如何将页面标识插入注释表?

时间:2012-12-21 17:45:42

标签: php jquery mysql forms

我正在尝试创建包含多个页面的评论系统(每个页面都有自己的评论) 例如 - 访问者有两页:alegro.php和darwin.php

alegro.php

<?php 
$page="alegro"; // this variable should identify a page
include "comments.php";
?>

darwin.php

<?php 
$page="darwin";
include "comments.php";
?>

comments.php有一个commentForm和一些js验证码 然后comments.php将all发送到第四个文件 - submit.php,它填充dbTable:

mysql_query("INSERT INTO comments(page,name,url,email,body) VALUES (
      '$page' // - this is my first try
       $page  // - the second try
'".$arr['page']."' //the third try (after implementing a hidden "page" field into the form).
'".$arr['name']."',
'".$arr['url']."',
'".$arr['email']."',
'".$arr['body']."'
)");

无论如何 - $page值不会写入表中。

2 个答案:

答案 0 :(得分:2)

为什么使用$page

只是插入功能

 function insertdata (){
  // do your code of inserting here to database
 }

并且在每个文件darwinalegro中都包含此功能。

exampleel

    if (isset($_POST['submit_comment']))
      {
      function insertdata() ;
      }

答案 1 :(得分:1)

<强> darwin.php

$page = 'darwin';
include('comments.php');

<强>的comments.php

<form action="submit.php">
    <input type="hidden" name="page" value="<?php echo $page; ?>" />
    <textarea name="comment"></textarea>
</form>

<强> submit.php

// $arr array filled
$arr['page'] = $_REQUEST['page'];
mysql_query("INSERT INTO comments(page,name,url,email,body) VALUES (
    '".$arr['page']."',
    '".$arr['name']."',
    '".$arr['url']."',
    '".$arr['email']."',
    '".$arr['body']."'
    )");

仅供参考 - 不要使用mysql_ *,因为它已被弃用。切换到PDOmysqli个功能。