I'm a beginner in PHP and I can't pass some parameter from a form to another,my problem is shown in bellow :

I wrote this exp. in master page :
<a href = "test.php?tmpVar=$LinkArr[$i]>Test</a>
This part of my code is work correctlly, but i don't know how to recive tmpVar variable. if i can it , i use that for an SQL command.
please wrote me how i can do it or tell me a good refrence for learnning PHP.

    Assuming the form is coded correctly, test.php will receive that value in the $_GET super-global array as $_GET['tmpVar'].

    That being said, I'm not sure the form is coded correctly based on the bit of code shown here, due to it not being clear that the link is being output in PHP mode, and the fact that it's missing a closing double-quote?

      Write a Reply...