我正在尝试创建包含多个页面的评论系统(每个页面都有自己的评论) 例如 - 访问者有两页: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
值不会写入表中。
答案 0 :(得分:2)
为什么使用$page
?
只是插入功能
function insertdata (){
// do your code of inserting here to database
}
并且在每个文件darwin
或alegro
中都包含此功能。
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']."'
)");