Quote:
|
<form method="POST" action="resultado_busqueda.php">
|
is the reciever of the form information
On that page is where the php code should be placed. I usually have a debug routine to make sure it is getting there which I // remark out or remove when I am done. In your case my debug would look like.
PHP Code:
echo $_POST['whatever was submitted on the form']; //debug only echo "br />; //debug only echo $_post[the next item];//debug only
And I continue with the echos until I know I have all the submitted data getting to the right page and then I do whatever I want with it.
Once I get the sender and the reciever both working I incorporate them into one script or page but that topic is a little more advanced then you are ready for this morning.
__________________
Colbyt
Last edited by colbyt; 01-16-2009 at 08:29 AM..
|