I have a link that I am using to call on a php file with an id in it. For some reason the external file doesn't get the id.
If I use
http://www.myplace.com/my.php?do=edit&id=133
and I have in my php file
Code:
if ($_REQUEST['do'] == 'edit') {
$ba = $db->query("SELECT * FROM " . TABLE_PREFIX ."mytable WHERE id='$id'");
The value of the id doesn't make it to the php file and I get a database error at id=.
Any ideas what has changed in 3.51 that the file doesn't get the id number? It used to work in 2.xx just fine.
Thanks,
Parker