PHP Code:
	
	
<?php
  $host="david";
  $user="hasili";
  $password="geheim";
  $dbname="neuedatabase";
  $tablename="Feedback";
  
  $link=mysql_connect($host,$user,$password);
  $query="CREATE table $tablename (id int unsigned not null auto_increment primary key, Vorname text, Nachname text, E-Mailadresse text, Kommentare text)";
  if(mysql_db_query($dbname,$query,$link)) {
    print("Der Query wurde erfolgreich ausgeführt!");
  } else {
      print("Der Query konnte nicht ausgeführt werden! (warum auch immer, ich weiß es jedenfalls net)<br>\n");
    }
  mysql_close($link);
   
?>
          
							
						
 ... falls es dann immer noch nich klappt frag ich nochmal 
Comment