I'm wondring how I can make requests with & in the URL ? For example :
page.php?name=Steve&age=62
How I can make this ?
Thanks
"make" is unclear
echo "<a href='page.php?name=Steve&age=62'>link</a>";
No No, I don't mean to echo it I mean what's the code to get the above example work ?
guessing you mean to ask "how do i retrieve the variables from a query sting in the url"
they will be in the $_GET global array, in the example above
echo $_GET['name']; //Steve