From RuneGlory
Revision as of 02:19, 20 May 2018 by Dannyx (talk | contribs)
Jump to: navigation, search

HTML for Time Zone dropdown/select


Event Promotions

Select your timezone to see which hour an event will appear


   <?php
   if(isset($_GET['names']))
   {
       $name=$_GET['names'];
       $c=mysql_connect("localhost","root","");
       mysql_select_db("test");
       $ins=mysql_query("INSERT INTO `option` 
                         (name)
                         VALUES ('$name')",$c) or die(mysql_error());
       if($ins)
       {
           echo "
".$name."inserted"; }
   }

?>