How to pass one HTML values to another HTML

Gabriel Genellina gagsl-py2 at yahoo.com.ar
Thu Apr 2 03:48:40 EDT 2009


En Tue, 31 Mar 2009 08:27:18 -0300, Kalyan <kalyan.be at gmail.com> escribió:

>    by using python and google app engine how can i pass one HTML values  
> to
> another HTML  .. i am very new to Python programing
>
> Example :
>  in one HTML i entered Name and Address fields and i submit the page at  
> that
> time i want to see those two values in another HTML page.. please reply  
> me..

You don't. The first page saves data into a database ("datastore" in
AppEngine). The second page retrieves data from the datastore. Both pages
aren't directly connected.

There are many tutorials available about AppEngine, you may start here:
http://code.google.com/intl/en/appengine/docs/

-- 
Gabriel Genellina




More information about the Python-list mailing list