PHP Code:
<?php
include("config.php");
mysql_query("INSERT INTO numbers (phone) VALUES 'test'") or die (mysql_error());
?>
Wo liegt der Fehler?
<?php
include("config.php");
mysql_query("INSERT INTO numbers (phone) VALUES 'test'") or die (mysql_error());
?>
$sql = mysql_query('INSERT INTO numbers (phone) VALUES ("test") ');