Проблемы с подключением к базе данных
Добрый день! Я изучаю новости PHP.Здесь у меня возникли проблемы с подключением к базе данных.Пожалуйста, помогите мне решить эту проблему. Я пытался подключить HTML-шаблон к своей базе данных.
Что я уже пробовал:
<pre> <html> <head> <title>Insert new post</title> </head> <body> <form method="center" action="insert_post.php" enctype="multipart/form-data"> <table width="600" align="center" border="10"> <tr> <td align="center" bgcolor="yellow" colspan="6" ><h1>Inset new post here</h1></td> </tr> <tr> <td align="center">Post title</td> <td ><input type="text" name="title" size="30"></td> </tr> <tr> <td align="center">Post keywords</td> <td ><input type="text" name="title" size="30"></td> </tr> <tr> <td align="center">Post content</td> <td ><textarea name="content" cols="60" rows="15"></textarea></td> </tr> <tr> <td align="center" colspan="6"><input type="submit" name="submit" value="Publish now"></td> </tr> </table> </form> </body> </html> <?php $db = mysqli_connect('localhost','root','','template'); if(isset($_POST['submit'])){ echo $post_title=$_POST['title']; echo $post_keywords=$_POST['keywords']; echo $post_content=$_POST['content']; if($post_title=='' or $post_keywords=='' or $post_content==''){ echo "<script>alert('any of the fields is empty')</script>"; exit(); } else{ $insert_query="INSERT INTO posts(post_title,post_keywords,post_content) values('$post_title','$post_keywords','$post_content')"; if(mysqli_master_query($insert_query)){ echo"<center><h1>POST PUBLISHED succesfully</h1></center>"; } } } ?>