aus der DB und was soll ich jetzt da rein schriben
Aus DB auslesen
Collapse
X
-
muss es jetzt so sein???
PHP Code:<?php
mysql_connect('*****','*****','*****') or die(mysql_error());
mysql_select_db('*****') or die(mysql_error());
switch ($UserStatus) {
case 0: include ("index.php");
case 1: include ("index1.php");
case 2: include ("index2.php");
case 3: include ("index3.php");
}
?>
Comment
-
funktionierts denn? na also.
http://tut.php-q.net/mysql-select.html
http://tut.php-q.net/mysql-select-php.html ff.
Comment
-
Original geschrieben von penizillin
funktionierts denn? na also.
http://tut.php-q.net/mysql-select.html
http://tut.php-q.net/mysql-select-php.html ff.Last edited by M4rc3l; 01-04-2006, 14:31.
Comment
Comment