View file install_shout.php

File size: 915B
<?php ini_set("display_errors",0);
$title = "Install Shoutbox MFH v1.0.1";
include ("includes/connect.php");
include ("includes/header.php");
mysql_query("DROP TABLE IF EXISTS `shoutbox`;");
mysql_query("CREATE TABLE IF NOT EXISTS `shoutbox` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`text` text NOT NULL,
`userid` bigint(20) NOT NULL,
`level` bigint(20) NOT NULL,
`name` text NOT NULL,
`time` bigint(20) NOT NULL,
PRIMARY KEY (`id`)
)  ENGINE=MyISAM DEFAULT CHARSET=utf8;
");
$time = time();
@$a=mysql_query("INSERT INTO shoutbox (userid,text,level,time) VALUES ('1', 'Hy, Your Shoutbox Has been installed successfully... ', '2', '$time')");
if($a) echo '<div class="br"/><div class="title">Install Shoutbox v1.0.1</div><div class="menu">Shoutbox Has been installed successfully</div><div class="news">Don\'t forget to delete install_shout.php file</div>';
include ("includes/footer.php");
?>