i am trying to insert data into mysql database but all thing going fine no error occur but when i browse data so it is not inserted into database here my coding kindly check it out.
here my html codes:
<html> <head>
<title>Insert Latest News</title>
</head>
<body>
<form action="insert_post.php" method="POST" enctype="multipart/form-data">
<table align="center" border="10" width="800">
<tr> <td align="center" colspan="5" bgcolor="yellow"><h1>Insert Latest News</h1></td> </tr>
<tr> <td>Post Title</td> <td><input type="text" name="title" size="30" /></td> </tr>
<tr> <td>Post Author</td> <td><input type="text" name="author" /></td> </tr>
<tr> <td>Post Image</td> <td><input type="file" name="image" /></td> </tr>
<tr> <td>Post Content</td> <td><textarea name="content" cols="50" rows="20"></textarea></td> </tr>
<tr> <td colspan="5" align="center"><input type="submit" name="submit" value="Publish" /></td> </tr> </table>
</form> </body> </html>
Here is my connection script
$connect = mysql_connect("localhost","root",""); 
$con = mysql_select_db("express", $connect); 
if ($con){ 
    echo ""; 
} else { 
    echo "databse not connected"; 
} 
here my php codes:
<?php require("connect.php");
if (isset($_POST['submit'])){
    $title = $_POST['title'];
    $author = $_POST['author'];
    $content = $_POST['content'];
    $image_name = $_FILES['image']['name'];
    $image_type = $_FILES['image']['type'];
    $image_size = $_FILES['image']['size'];
    $image_tmp = $_FILES['image']['tmp_name'];
    $date = Date('y/m/d');
    if ($title=='' or $author=='' or $content=='' or $image_name==''){
        echo "<script>alert('Any feild is empty')</script>";
        exit();
    }
    if ($image_type=='image/jpeg' or $image_type=='image/png' 
    or $image_type=='image/gif' or $image_type=='image/jpg'){
        echo "";
    } else {
        echo "<script>alert('your image type is not allowed')</script>";
    }
    if ($image_size<=1000000){
        move_uploaded_file ($image_tmp, "images/$image_name");  
        exit();
    } else {
      echo "<script>alert('Image is larger, not allowed by admin ')</script>";
    }
    $query = "INSERT INTO news
             (news_title, news_author, news_content, news_image, news_date) 
             values($title,$author, $content, $image_name, $date,)";
    if ($query){
        echo "<center><h1>Your News has Been Published</h1></center>";
    } 
} 
?>
 
     
     
     
     
     
     
     
     
    