Kod: Zaznacz cały
<?php
$link = mysql_connect("127.0.0.1", szopler, haslo) or die("Could not connect");
$query = ("CREATE DATABASE temperatura");
$result = mysql_query($query) or die (<FONT color=red>"Problem 1"</FONT>);
mysql_select_db("temperatura");
$query = "CREATE TABLE temp (id int NOT NULL auto_increment, date date NOT NULL, time time NOT NULL, temperatura smallint(6) NOT NULL, PRIMARY KEY (id))"
$result = mysql_query($query) or die ("<FONT color=\"red\">Problem 2</FONT>");
echo "Jezeli nie widzisz bledow to :)";
?>