56a1b2e7a3262daf3e7a85d9aeb3759177130251
[yaffs-website] / vendor / behat / mink-browserkit-driver / tests / web-fixtures / basic_get_form.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru">
3 <head>
4     <title>Basic Get Form</title>
5     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
6 </head>
7 <body>
8     <h1>Basic Get Form Page</h1>
9
10     <div id="serach">
11         <?php
12         $GET = $app['request']->query->all();
13         echo isset($GET['q']) && $GET['q'] ? html_escape_value($GET['q']) : 'No search query'
14         ?>
15     </div>
16
17     <form>
18         <input name="q" value="" type="text" />
19
20         <input type="submit" value="Find" />
21     </form>
22 </body>
23 </html>