[PHP-Noob]
Ich versuch irgendwie meine Table guestbook rauf zu bekommen also mit einer install.php das Problem ist allerdings das ich mit diesem Code nicht weit komm, kann mir wer helfen?
[/PHP-Noob]
Ist jetzt nur ne testdatei funkt trotzdem nich...
Ich versuch irgendwie meine Table guestbook rauf zu bekommen also mit einer install.php das Problem ist allerdings das ich mit diesem Code nicht weit komm, kann mir wer helfen?
[/PHP-Noob]
PHP-Code:
<html>
<body>
<?
if($action == "add"){
error_reporting(E_ALL);
include '../include/_mysql.php';
$db_link = mysql_connect($host, $username, $password)OR
die("Keine Verbindung zur Datenbank. Fehlermeldung:".mysql_error());
mysql_select_db($db_name) OR
die("Konnte Datenbank nicht benutzen, Fehlermeldung: ".mysql_error());
mysql_query ("drop table guestbook");
mysql_query ("CREATE TABLE guestbook (
id INT(4) NOT NULL AUTO_INCREMENT PRIMARY KEY,
name varchar(65) NOT NULL DEFAULT '',
email varchar(65) NOT NULL DEFAULT '',
comment longtext NOT NULL,
datetime varchar(65) NOT NULL default '',"
);
}?><form name="form1" method="post" action="step1.php?action=add">
<input type="submit" name="Submit" value="Senden">
</form>
<p> </p>
</body></html>
Kommentar