2010-11-02 03:56:42 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<title>jQuery Mobile Docs - Forms</title>
|
2011-01-06 00:19:24 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/default/" />
|
2010-11-11 19:15:42 +00:00
|
|
|
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
|
2010-11-09 22:57:26 +00:00
|
|
|
<script type="text/javascript" src="../../js/"></script>
|
2010-11-02 03:56:42 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<div data-role="page" data-theme="c">
|
|
|
|
|
|
|
|
|
|
<div data-role="header" data-theme="e">
|
|
|
|
|
<h1>Sample form response</h1>
|
|
|
|
|
</div><!-- /header -->
|
|
|
|
|
|
|
|
|
|
<div data-role="content" data-theme="c">
|
|
|
|
|
|
|
|
|
|
<form action="index.html" method="get">
|
|
|
|
|
|
|
|
|
|
<h2>You Chose:</h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
echo "<p> " . $_REQUEST['shipping'] . "</p>";
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div><!-- /content -->
|
|
|
|
|
</div><!-- /page -->
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|