-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults2.php
More file actions
41 lines (33 loc) · 865 Bytes
/
Copy pathresults2.php
File metadata and controls
41 lines (33 loc) · 865 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
35
36
37
38
39
40
41
<?PHP
//Grab the form elements using PHP
$text = $_POST['text'];
$slider = $_POST['slider'];
$flip = $_POST['flip'];
$radio = $_POST['radio1'];
$checkbox = $_POST['checkbox1'];
$select = $_POST['select'];
?>
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<h3>Your form results</h3>
Text:<?=$text;?>
<br />
Slider:<?=$slider;?>
<br />
Flip:<?=$flip;?>
<br />
Radio:<?=$radio;?>
<br />
Checkbox:<?=$checkbox;?>
<br />
Select:<?=$select;?>
</body>
</html>