2013-07-16 229 views
0
<?php 

session_start(); 

include_once ('../include/connection.php'); 

if (isset ($_SESSION ['logged_in'])) { 

    if (isset ($_POST ['title'], $_POST ['content'])) { 
     $title = $_POST ['title']; 
     $content = $_POST ['content']; 

     if (empty ($title) or empty ($content)) { 
      $error = 'All fields are required'; 
     } else { 

      $query = $pdo->prepare ('INSERT INTO articles (article_title, article_content, article_timestamp) VALUES (?, ?, ?)'); 

      $query->bindValue (1, $title); 
      $query->bindValue (2, $content); 
      $query->bindValue (3, time()); 

      $query->execute(); 

      header ('Location: index.php'); 
     } 
    } 
    ?> 
+4

你做了什么错误? –

+1

不知道错误无法帮助。 – williamcarswell

+0

没有错误不提交表单我现在不为什么 –

回答

0

请检查你的语法 - “}”缺少

也许这解决了这个问题