-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
34 lines (25 loc) · 905 Bytes
/
index.php
File metadata and controls
34 lines (25 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
//echo '<p>This is PHP</p>';
if(isset($_GET["FirstName"])){//show feedback
//echo $_GET["FirstName"];
echo '<pre>';
var_dump($_GET);
echo '</pre>';
}else{//show form
echo '
<form action="">
<p>First Name: <input type="text" name="FirstName" /></p>
<p>Last Name: <input type="text" name="LastName" /></p>
<p>Favorite Color:</p>
<p><input type="radio" name="FavoriteColor" value="red" /> Red </p>
<p><input type="radio" name="FavoriteColor" value="blue" /> Blue </p>
<p><input type="radio" name="FavoriteColor" value="purple" /> Purple </p>
<p>Sundae Toppings:</p>
<p><input type="radio" name="Toppings[]" value="oreos" /> Oreos </p>
<p><input type="radio" name="Toppings[]" value="whipped cream" /> Whipped Cream </p>
<p><input type="radio" name="Toppings[]" value="crushed nuts" /> Crushed Nuts </p>
<input type="submit" />
</form>
';
}
?>