-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
37 lines (27 loc) · 968 Bytes
/
index.php
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
35
36
37
<?php
//echo 'This is PHP!';
//echo 'you are such a big fart looozer';
if(isset($_GET["FirstName"])){//show feedback
echo $_GET["FirstName"];
echo '<pre>';
var_dump($_GET);
echo '</pre>';
}
else{//show form
echo '<p>This is a form yay?</p><form action="">
<p>First Name:<input type="text" name="FirstName" placeholder="First Name" /></p>
<p>Last Name:<input type="text" name="LastName" placeholder="Last Name" /></p>
<p>E-mail:<input type="text" name="Email" placeholder="Email" /></p>
<p>you like cheese?<br />
<input type="radio" name="likeCheese" placeholder="yes" value="yes"/>yes
<input type="radio" name="likeCheese" placeholder="no" value="no" />no
</p>
<p>you like Peanut butter?<br />
<input type="radio" name="likePB" placeholder="yes" value="yes"/>yes
<input type="radio" name="likePB" placeholder="no" value="no" />no
</p>
<br />
<input type="submit" /></form>
';
}
?>