Question: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'];
?>
 

A Nothing 

B Array 

C A notice 

D phpgreat 

E greatphp 

+ Answer
+ Explanation
+ Report
Total Preview: 975

Copyright © 2024. Powered by Intellect Software Ltd