Hello....
I was trying to pass a variable through an URL and retrive the variable data in the page mentioned in the URL. But I had a futile attempt.
CODE SNIPPET IS AS FOLLOWS:
$url = "results.php?start=".$nstart;
echo "<a href='$url'>Next</a>";
NOTE:
This hyperlink is placed on the page results.php and I want it get the variable on the page results.php through URL when I click the NEXT link or URL mentioned here.
Got it?
The purpose of this URL is retrieving data from Database and display the data based on a specific count in several pages and navigate using NEXT and PREV links(implemented thru a function).
CAN ANYBODY PLEASE GIVE ME A HELPING HAND?
THNX