I'm having problem passing in array variables with $_GET[]:
Code: Select all
echo $_GETї'engineї0]'];
echo $_GETї'engineї1]'];I pass it from a form with
Code: Select all
<SELECT NAME="engineї]" MULTIPLE>Moderator: General Moderators
Code: Select all
echo $_GETї'engineї0]'];
echo $_GETї'engineї1]'];Code: Select all
<SELECT NAME="engineї]" MULTIPLE>Code: Select all
echo '<pre>';
print_r($_GET);
echo '</pre>';another option is to assign by reference. As such...$engine = $_GET['engine'];
Code: Select all
$engine = &$_GETїengine];Code: Select all
do{
echo current($_GETї'sam']);
}while(next($_GETї'sam']));