i have a little doubt about passing value from html to php page…the traditional way says put everything in form and submit it…like
in form1.php
echo $_get[‘text1’];
and in another file use $_GET[’’] to retrieve this value but the problem is whole page reloads…
here is what i want to do…
i want to use anchor tag instead of submit and pass it to the another page…so that whole page wont reloads…
the codes are like that but i stuck in the url part