Question
POST vs GET
I have the search form with two fields: last name and first
name. If I use method="POST" then it worked correctly which mean if
I enter smith on last name field then I get all the names where
last name like ‘smith%’.
BUT if I use method="GET" I don’t get where last name like ‘smith%’, I get just a select statement only no where condition for this case. Thus, in the search form, do I need to use POST or GET method?
thanks
BUT if I use method="GET" I don’t get where last name like ‘smith%’, I get just a select statement only no where condition for this case. Thus, in the search form, do I need to use POST or GET method?
thanks