Hello.
I started PHP Programming two days ago!
When I send some variables to a diffrent page by GET method like this:
localhost/b.php?user="Peter"
in b.php page the variabe "user" is not defined.
Can somebody help me?
Problem with sending variables to a diffrent page.
Moderator: General Moderators
Re: Problem with sending variables to a diffrent page.
All variables sent through the GET method, in the URL, will be stored in the $_GET array. So for yourpage.php?user=123 $_GET["user"] would equal "123".
Re: Problem with sending variables to a diffrent page.
Thanks very much Mr. paqman.
God blass you!
God blass you!