I am creating this link on a page (the variables are being called correctly, I can tell when i see where the link leads when I put my mouse over it). However, I can't seem to get the passed variables on the edit page. Here's the code to make the link:
echo '<a href="edit.html?id=' . $id . '&slotname=' . $slotname[$n] . '&action=edit" target="name" onclick="window.open(\'edit.html\',\'name\',\'height=500,width=500,toolbar=yes,directories=no,status=no,menubar=no,scrollbars=no,resizable=no\'); return false;">';
.
.
.
I've tried using the
echo $_GET['id']; but that doesn't seem to work. Any suggestions?