Vote count:
0
$firstName = isset ($_GET["firstName"]);
$lastName = isset ($_GET["lastName"]);
if(isset($_GET['firstName'])&& isset($_GET['lastName'])){
if (isset($_GET['firstName']) == "Kory" && isset($_GET['lastName']) == " ") {
echo "Hello Kory";
}
}
if(isset($_GET['firstName'])&& isset($_GET['lastName'])){
if (isset($_GET['firstName']) == " " && isset ($_GET['lastName']) == "Glover") {
echo "Hello";
}
}
if(isset($_GET['firstName'])&& isset($_GET['lastName'])){
if (isset($_GET['firstName']) == " " && isset($_GET['lastName']) == " ") {
echo "Hello";
}
}
?>
asked 1 min ago
I'm trying to make a message appear on screen with the php $_GET statements but they're just coming up blank
Aucun commentaire:
Enregistrer un commentaire