dersepp33
19.09.2011, 19:51
Ich habe folgendes Problem: Ich habe eine Datei für das VMS geschrieben, die Tabellen installieren soll, diese funktioniert aber leider aus mir unerfindlichen Gründen nicht.
In PHPMyAdmin funktioniert der Code. :frusty: Ich vermute, dass es irgendwo an der Syntax liegt, ich finde den Fehler aber nicht.
Danke.
<?
echo 'Tabellen Installation';
require('../../../lib/functions.lib.php');
db_connect();
$query1 = "
CREATE TABLE `test` (
`test1` int NOT NULL,
`test2` int NOT NULL,
`test3` int NOT NULL,
`test4` int NOT NULL,
`test5` int NOT NULL,
`test6` int NOT NULL,
`name` varchar(255) NOT NULL default 'testtest'";
$result = mysql_query($query1);
$query2 = "
CREATE TABLE `test7` (
`test12` enum('test8','test9') NOT NULL default 'test10',
`test13` varchar(255) NOT NULL default 'test11',
`test14` decimal NOT NULL,
`test15` int NOT NULL,
`test16` int NOT NULL";
$result2 = mysql_query($query2);
?>
Edit: Fehler gefunden.
In PHPMyAdmin funktioniert der Code. :frusty: Ich vermute, dass es irgendwo an der Syntax liegt, ich finde den Fehler aber nicht.
Danke.
<?
echo 'Tabellen Installation';
require('../../../lib/functions.lib.php');
db_connect();
$query1 = "
CREATE TABLE `test` (
`test1` int NOT NULL,
`test2` int NOT NULL,
`test3` int NOT NULL,
`test4` int NOT NULL,
`test5` int NOT NULL,
`test6` int NOT NULL,
`name` varchar(255) NOT NULL default 'testtest'";
$result = mysql_query($query1);
$query2 = "
CREATE TABLE `test7` (
`test12` enum('test8','test9') NOT NULL default 'test10',
`test13` varchar(255) NOT NULL default 'test11',
`test14` decimal NOT NULL,
`test15` int NOT NULL,
`test16` int NOT NULL";
$result2 = mysql_query($query2);
?>
Edit: Fehler gefunden.