Вот код Html PHP: <html> <head> <title>Тестовый сайт InternetDevels</title> <link rel="stylesheet" href="styles.css"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Anton|Roboto+Slab"> </head> <body> <?php include "header.php" ?> <div class="content"> <?php include "public.php"; ?> <form name="form" action="public.php" method="post"> Ваша новость: <input type="text" name="novost" class="news"><br> <input type="submit" name="submit" value="Добавить новость"> </form> </div> <?php include "footer.php" ?> </body> </html> А вот код самого запроса к БД. PHP: <?php mysql_connect('localhost', 'testid', 'testid') or die("Error establishing connection!"); mysql_selectdb('News') or die("Can not select database!"); mysql_query("CREATE TABLE IF NOT EXISTS News( News VARCHAR, ") or die("Can not create table!!!"); $News = mysql_escape_string(@$_REQUEST['News'] or die("You have not entered USER NAME field!")); mysql_query("INSERT INTO News SET News = \"$News\" ") or die("Can not execute insert!!!"); ?> Выдаёт ошибку что делать?
Необходимо указать "текст ошыбки" на который ругается РНР! (просто коперните и скиньте ,-что вам можно было помочь)