Tob
Erfahrenes Mitglied
Der schritt Fehlt:
dann sollte es gehen
tob
richtiger müsste es so heissesn$ip = "create table ip( ... )";
mysql_query($ip, $mysql);
PHP:
$mysql= mysql_connect("localhost","xxx","xxx");
mysql_select_db("gamers_games_de");
# table ip
$ip="create table ip
(
zeit int(10) default NULL,
ip varchar(15) default NULL
)";
mysql_query($ip,$mysql);
# table hits
$table="create table hits
(
hits int(10) default NULL
)";
mysql_query($table,$mysql);
?>
</body>
</html>
dann sollte es gehen
tob