1

我正在尝试将 if 语句添加到 mysql 查询,以便在查询运行之前检查用户是否存在于 user_id 列中名为 ptb_users 的表中。

用户可以在其他用户墙上写字,在用户可以在用户墙上写字之前/在查询插入 ptb_wallposts 之前,我希望它检查 from_user_id = ptb_users.user_id。

我正在尝试这样做,但我的页面上到处都是语法错误,有人可以告诉我我需要如何构建它:

 <?php 
// check if the review form has been sent
if(isset($_POST['review_content']))
{
    $content = $_POST['review_content'];
        //We remove slashes depending on the configuration
        if(get_magic_quotes_gpc())
        {
                $content = stripslashes($content);
        }
        //We check if all the fields are filled
        if($_POST['review_content']!='')
        {

如果存在(从 ptb_users 中选择 user_id,其中 user_id = @id)开始

            {
            $sql = "INSERT INTO ptb_wallposts (id, from_user_id, to_user_id, content) VALUES (NULL, '".$_SESSION['user_id']."', '".$profile_id."', '".$content."');";
            mysql_query($sql, $connection);

            $_SESSION['message']="<div class=\"infobox-wallpost\"><strong>Wall Post Added</strong> - Your comment was posted to {$profile[2]}'s wall.</div><div class=\"infobox-close4\"></div>"; 
header("Location: {$_SERVER['HTTP_REFERER']}");


        } }
}

结束否则开始回显“错误用户不存在”结束

?> 
4

1 回答 1

0

这是 if 语句的示例(来自 MySQL 参考)

IF search_condition THEN statement_list
[ELSEIF search_condition THEN statement_list] ...
[ELSE statement_list]
END IF

让我解释得更好一点,我将比较 PHP 和 SQL 的 if 语句

PHP:

IF(variable > 0){
   anything..     
}

SQL:

IF variable > 0 THEN anything..

阅读更多:MySQL 参考 - IF 语句

于 2013-04-02T18:34:53.640 回答