Tried all the suggestions from the forums that I have read --but (typical of a newbie) to no avail. Problem is this - I am trying to pass a parameter in a url and the next program will not get it.
The page being call is seldone.php and it is being called from the action element of a form like this action="seldone.php?select=111111"
To ensure this works seldone.php only has these entries:
<?php
echo "in seldone";
$myvar1 =$select;
$myvar2 = $_REQUEST['select'];
$myvar3 = $GET['select'];
echo "MyVar1: ".$myvar1;
echo "MyVar2: ".$myvar2;
echo "MyVar3: ".$myvar3;
?>
No luck on any code...Thanks in advance.