Web Features Learning Mode
Consider the following form and subsequent script. What will the script print out if the user types the word "php" and "great" in the two text boxes respectively?
<form action="index.php" method="post">
<input type="text" name="element[]">
<input type="text" name="element[]">
</form>
<?php
echo $_GET['element'];
?>
|
|
|
|