hello every one
i want to ask you a question?
for example i have a model
db.define_table('persons',
Field('name'),
Field('sex'),
Field('age'),
Field('address')
and lets take this controller
def create_person():
form=SQLFORM(db.persons)
here i want to access the value i have entered in the name text box
and assign it to a variable so that i can use it for and selection criteria
return dict(form=form)
any help on this kind of question is valuable to me so please help me do
this. 10Q.--

