Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
The value $username which i want to perform the query on is the value which the user passed in on the very first html page. Is there any secure way of passing that value accross these two pages, or can anybody suggest a better approach that the one i am taking. I would appreciate any help on this matter Thanks$sth = $dbh->prepare(q{SELECT students.grade from students, users wher +e students.id = users.id and users.id = ?}) $usr->execute($username)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: passing a value between pages
by rhesa (Vicar) on Dec 11, 2006 at 00:18 UTC | |
|
Re: passing a value between pages
by siva kumar (Pilgrim) on Dec 11, 2006 at 06:34 UTC |