JSFiddle - React, Tailwind, and code Playground

by pmatseykanets

HTML

<!DOCTYPE html>

<html>
<head>
    <title>Multipage jQM submit</title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
    <div id="result" data-role="page">    
        <div data-role="header" data-theme="b" data-position="fixed">
            <h1>Submit results</h1>
            <a href="#" data-rel="back" data-icon="arrow-l">Back</a>
        </div>
        <div data-role="content">

<?php
    echo '<pre>';
    if (isset($_REQUEST)) {
        print_r($_REQUEST);
    }
    echo '</pre>';
?>
        </div>
    </div>

</body>
</html>