Hi everyone...
Well i do have a mysql query in one php page(php_1) & I want to submit the variables to the query in different php page(php_2) via form action but how am I supposed to do it without redirecting to php_1..
All I need is to post the data to the first php page query so that It performs some action over there & thats all... So hoping sumone who knows ajax might helpme out with a sample code or point me in the right direction...
Thanks,
php_1 page :-
$query = ("SELECT * FROM state4 WHERE (LONG_HI<'".$_POST['Ymax']."')");
php_2 page:-
Ymax<input type="text" name="Ymax" size="15">
<input type=SUBMIT name="submit" VALUE="Submit"></td>