Hey again everyone, I have yet another problem that I need help with. On my page as it is now, everything works just as it should and without error. Until, that is, I try to load it in internet explorer and I get this error on one of my pages:
Notice: Undefined index: picvalue in /xxx/xxx/xxx/click.php on line 10
line ten of click.php is:
Code: Select all
$position = $_REQUEST['picvalue'];
It seems to be a problem with the script from a previous page passing it the proper value. The relevent parts of the page that passes the script along (and does so successfully in firefox and safari, at least) are :
Code: Select all
echo '<form action="click.php"><table border="0">';
...
echo '<td><input type="image" src="card-back2.gif" value="';
echo $buttonvalue;
echo '" name="picvalue" height="150" width="200"></td>';
...
echo '</table></form>';
Anyone have any idea why this wouldn't function properly on IE, but be fine on other browsers or how to fix this problem?
Thanks,
Roy