Hello you gurus!
First of all, let me wish ALL of you all the best for 2003 and all other years to come!
Also, I would like to compliment all the posters on the high quality of answers and questions. I tought myself PHP, thanks to this forum and its members.
How's that for kissing up to you!? ;oD
Okay, let's go down to business! I have this next problem.....eehhrrrr....challenge:
On a PHP-page I'm using hyperlinks to send users to a modify (WIJZIGEN) screen or give them the possibility to delete (VERWIJDER) a record. When this link is clicked upon the whole command shows up in the address bar of the browser. Is there a way to surpress this? I don't want people to see the parameters I'm sending to the modify/delete program.
Find a piece of the code below:
Some code before
|
|
<?php
mysql_connect("localhost","","");
mysql_select_db("database");
$SQLString = "SELECT * FROM bestand
ORDER BY volgnummer, omschrijving";
$Lijst = mysql_query(stripslashes($SQLString));
while ($regel = mysql_fetch_array($Lijst)):
$vlgnr = $regel['volgnummer'];
$omsch = $regel['omschrijving'];
echo " <table class=\"TableAttr\" align=\"center\">
<tr valign=\"top\">
<td width=\"10%\">$vlgnr</td>
<td width=\"70%\">$omsch</td>
<td width=\"10%\">
<center>
<a href=\"wijzigrub.php?wijzigrub=$vlgnr\" OnMouseOver='window.status=\"\"; return true'>Wijzigen</a>
</center>
</td>
<td width=\"10%\">
<center>
<a href=\"wisrub.php?wijzigrub=$vlgnr\" OnMouseOver='window.status=\"\"; return true'>Verwijder</a>
</center>
</td>
</tr>
</table>";
endwhile;
mysql_close();
?>
|
|
Some more code
The bold printed lines are the ones I'm talking about. When the user clicks on one of them, everything shows up in the adressbar of the browser. I would like to hide this.
How can this be done? Your answer is much appreciated.
Greetings from a COLD Netherlands!