Просмотр файла install.php

Размер файла: 899B
<?php
//Гостевая книга powered by GiG
//////////////////////////////////  
//   Автор: GiG                 //
//   Скрипт: GiGGuesT_v1.0.0    //
//   Рождение скрипта: 09.09.08 //
//                              //
//////////////////////////////////
include "inc/config.inc.php";
include "inc/functions.php";
include "inc/head.php";
include "inc/connect.inc.php";

while(true){


@mysql_query("DROP TABLE `guest`");
$result=false;
$result=mysql_query("CREATE TABLE `guest`
(`login` text , `text` text , `time` text , `passadmin` text)
");
If ($result===false){
echo 'table `guest` doesnt create!<br/>'.mysql_error().'<br/><u>Попробуйте повторить запрос</u>';
break;
}



echo 'Базы успешно залиты!<br> <a href="index.php">Далее</a><br></u>';
break;
}


include "inc/foot.php";
?>