here is the code: I believe I have used this before, but for some reason, it doesnt seem to work. Also, I don't want to use PHP_SELF, thats why i set the link to test1.php. Also, the name of the file that containes this code is test1.php.
<?
$backnumber = $issue_id -1;
$nextnumber = $issue_id +1;
$backbutton = "test1.php?issue_id=".$backnumber;
$nextbutton = "test1.php?issue_id=".$nextnumber;
$welcomemsg = "<h2>Hello, Welcome to our site!</h2><br>"
?>
<?
echo $welcomemsg;
echo "<a href=";
echo $nextbutton;
echo ">Next Number</a>";
?>
<br>
<?
echo "<a href=";
echo $backbutton;
echo ">Previous Number</a>";
?>
<br><br><br><br>
<a href="test1.php?issue_id=50">Click Here to Start Anew</a>
-Thanks.
<?
$backnumber = $issue_id -1;
$nextnumber = $issue_id +1;
$backbutton = "test1.php?issue_id=".$backnumber;
$nextbutton = "test1.php?issue_id=".$nextnumber;
$welcomemsg = "<h2>Hello, Welcome to our site!</h2><br>"
?>
<?
echo $welcomemsg;
echo "<a href=";
echo $nextbutton;
echo ">Next Number</a>";
?>
<br>
<?
echo "<a href=";
echo $backbutton;
echo ">Previous Number</a>";
?>
<br><br><br><br>
<a href="test1.php?issue_id=50">Click Here to Start Anew</a>
-Thanks.