· 9 years ago · May 17, 2017, 03:52 PM
1<?php
2$host="localhost";
3$user="root";
4$password="";
5$db="Auto";
6
7$cmd= array(
8 "create database if not exists ".$db,
9 "use ".$db,
10 "create table if not exists autos (
11 id int auto_increment not null,
12 model varchar(15) not null,
13 kfz varchar(15) not null,
14 kmstand decimal(10,3) not null,
15 primary key(id)
16 ) Engine=Innodb ;"
17);
18
19$mysql= mysql_connect($host,$user,$password) or die("Verbindung konnte nicht hergestellt werden");
20
21foreach($cmd as $c)
22 if (mysql_query($c,$mysql) === false)
23 die ("Fehler im Befehl: <b>".$c."</b>");
24
25echo "Installation erfolgreich";
26?>