results.php

 1: <?php
 2: 
 3: 	/*
 4: 	 * You may customize this page with your own results message.
 5: 	 */
 6: 
 7: ?>
 8: <!DOCTYPE html
 9:      PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
10:      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
11: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
12: <head>
13: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
14: <title>Current Poll Results</title>
15: <link href="template/styles.css" rel="stylesheet" type="text/css" />
16: </head>
17: <body>
18: 
19: <h1>Current Poll Results</h1>
20: 
21: <?php the_current_poll_results(); ?>
22: 
23: <p><a href="<?php the_return_to_url(); ?>">Go back</a></p>
24: 
25: <?php
26: /* DO NOT ALTER OR REMOVE THE CREDIT BELOW, PER LICENSE! */
27: the_credits();
28: /* END CREDIT */
29: ?>
30: 
31: </body>
32: </html>