View of /mambo/branches/4.5.3h/administrator/popups/pollwindow.php
Parent Directory
|
Revision Log
Revision 22 -
(download)
(annotate)
Fri Dec 16 19:02:17 2005 UTC (7 years, 5 months ago) by mambo
File size: 1836 byte(s)
Fri Dec 16 19:02:17 2005 UTC (7 years, 5 months ago) by mambo
File size: 1836 byte(s)
made a copy
<?php /** * @version $Id: pollwindow.php,v 1.1 2005/07/22 01:54:00 eddieajau Exp $ * @package Mambo * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** Set flag that this is a parent file */ define( "_VALID_MOS", 1 ); require_once("../includes/auth.php"); $database = new database( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix ); $database->debug( $mosConfig_debug ); $pollid = mosGetParam( $_REQUEST, 'pollid', 0 ); $css = mosGetParam( $_REQUEST, 't', '' ); $database->setQuery( "SELECT title FROM #__polls WHERE id='$pollid'" ); $title = $database->loadResult(); $database->setQuery( "SELECT text FROM #__poll_data WHERE pollid='$pollid' order by id" ); $options = $database->loadResultArray(); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Poll Preview</title> <link rel="stylesheet" href="../../templates/<?php echo $css; ?>/css/template_css.css" type="text/css"> </head> <body> <form> <table align="center" width="90%" cellspacing="2" cellpadding="2" border="0" > <tr> <td class="moduleheading" colspan="2"><?php echo $title; ?></td> </tr> <?php foreach ($options as $text) { if ($text <> "") {?> <tr> <td valign="top" height="30"><input type="radio" name="poll" value="<?php echo $text; ?>"></td> <td class="poll" width="100%" valign="top"><?php echo $text; ?></td> </tr> <?php } } ?> <tr> <td valign="middle" height="50" colspan="2" align="center"><input type="button" name="submit" value="Vote"> <input type="button" name="result" value="Results"></td> </tr> <tr> <td align="center" colspan="2"><a href="#" onClick="window.close()">Close</a></td> </tr> </table> </form> </body> </html>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

