Parçacıkları aşağıdaki çifti, ikisi de aslında aynı şeyi düşünün.
<html>
<body>
<?php
if(isset($_POST["firstName"]) && isset($_POST["lastName"])){
//I'm copying the POST variable to a local one.
$firstName = $_POST["firstName"];
$lastName = $_POST["lastName"];
echo "<h1>Thank you for taking the census!</h1>";
echo "On behalf of Sergio's Emporium, we name you: " . $firstName . $lastName . ", conquerer of worlds!";
//Here I'm just pulling it from the POST info.
echo "I think that's fitting since you're a " . $_POST["item"];
}
else {
echo "You didn't write in the necesarry information.";
}
?>
</body>
</html>
Hangisi standartlarına tarafından kullanılmak üzere teşvik edilmektedir (güvenlik açısından) kullanın ve hangi daha iyidir.
Ben PHP için yeni olduğum için bu benim söyIüyor şeydir. Teşekkürler çocuklar! :)