не могу добавить статю в базу даных Код (PHP): <? include ("bd.php"); if(isset($_POST['title'])) {$title = $_POST['title'];} if(isset($_POST['meta_d'])) {$meta_d = $_POST['meta_d'];} if(isset($_POST['meta_k'])) {$meta_k =$_POST['meta_k'];} if(isset($_POST['date'])) {$date = $_POST['date'];} if(isset($_POST['description'])) {$description=$_POST[ 'description'];} if(isset($_POST['text'])) {$text = $_POST['text'];} if(isset($_POST['author'])) {$author = $_POST['author'];} ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /> <title>Обработчик</title> <link <link href="style.css" rel="stylesheet" type="text/css" /> <style type="text/css"> body { background-image: url(img/bg.jpg); } </style> </head> <body> <table width="800" border="4" align="center" cellpadding="1"> <?php include("blocks/header.php")?> <tr> <td><table width="800" border="4"> <tr> <?php include("blocks/left.php")?> </tr> </table> </td> <td align="left" valign="baseline" bgcolor="#F6F6F6" class="main_border" > <? if (isset($title) && isset($meta_d) && isset($meta_k) && isset($date) && isset($description) && isset($text) && isset($author)) { $result = mysql_query ("INSERT INTO table (title,meta_d,meta_k,date,description,text,author) VALUES ('$title','$meta_d','$meta_k','$date','$description','$text','$author'"); if ($result == "true") {echo"<p>Ваш урок успішно доданий</p>";} else {echo "<p>Ваш урок не доданий</p>";} } else {echo "<p>Вы не заповнылы всю информацию</p>"; } ?> </td> </tr> </table></td> </tr> <?php include("blocks/footer.php")?> </table> </body> </html>