|
Posted by Marcin Dobrucki on 01/02/07 14:06
print_r($_GET);
See if 'functionType' is set, and one of those values. You could
also do:
if ( isset($_GET['functionType']) ) {
$type = $_GET['functionType'];
// the rest of the if stuff
}
else {
die ("Error, functionType is not in GET");
}
/m
Jeff Vaccaro wrote:
> How come this doesn't work?
>
> What am I doing wrong?
>
> $type = $_GET['functionType'];
>
> if ($type == 'Add'){
> $AddSQL = "INSERT INTO...";
> echo $AddSQL;
> }elseif ($type == 'Update'){
> $UpdateSQL = "Update ...";
> echo $UpdateSQL;
> }elseif ($type == 'Delete'){
> $DelSQL = "DELETE FROM ...";
> echo $DelSQL;
> }
>
> Thanks
>
Navigation:
[Reply to this message]
|