From RuneGlory
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"; }
}
?>