Forum Moderators: coopster
[mysite.com...]
The "3456789" is dynamic, of course, but I'd like to know how to encrypt it so that website users can not see it...how can I do this?
http://www.mysite.com/showrecord/3456789/
or you can use the hidden form field and pass the information that way.
link from page
<input type="hidden" name="showrecord" value="$tag">
link to page
$showrecord = mysql_real_escape_string($_POST['showrecord']);
The execute the query by using the $showrecord variable.
Seems to work fine.