28.01.2012, 19:27
Hmm, dann erstell in TWLan\htdocs eine Datei namens fix.php mit folgendem Inhalt:
Dann gehst du auf http://localhost/fix.php
MfG Manuel
PHP Code:
<?php
$connect = mysql_connect('localhost', 'root', '');
mysql_select_db('lan');
if(mysql_query('ALTER TABLE `villages` ADD `statue` integer(11);')) {
print 'Fixed ;)';
} else {
print 'Fehler: ' . mysql_error();
}
?>
Dann gehst du auf http://localhost/fix.php
MfG Manuel