簡體   English   中英

嘗試使用數組值作為SQL插入值

[英]Trying to use an array value as an SQL insert value

大家好,我試圖在新查詢中使用從先前查詢中獲得的值,該值是存儲在數組中的字符串,它們是$ Name和$ Email變量,當我var_dump它們時,它看起來像這樣。 ..字符串'nathgold'(length = 8)....我想將該nathgold用作新查詢插入中的值。 我收到錯誤通知:第30行的C:\\ wamp \\ www \\ login \\ post.php中的數組到字符串的轉換

<?php
include_once('connect-db.php');
session_start();

if(!isset($_SESSION['isLogged']))
{
 header("Location: home.php");
 die();
}

    if (!isset($_REQUEST['MBID'])) exit;
    if (!isset($_REQUEST['Parent'])) {
        $Parent = 0;
    } else {
        $Parent = $_REQUEST['Parent'];
    }

    if (isset($_POST['Title'])) {

        $user_info=mysqli_query($connection, "SELECT * FROM usertest WHERE id=".$_SESSION['user']);
        $userRow=mysqli_fetch_array($user_info);

        $Name = $userRow=['username'];
        $Email = $userRow=['email'];
        $Title = mysqli_real_escape_string($connection, $_POST['Title']);
        $Message = mysqli_real_escape_string($connection, $_POST['Message']);
        $CurrentTime = time();
        // other filtering here...

        $result = mysqli_query($connection, "INSERT INTO mbmsgs (MBID, Parent, Poster, Email, Title, Message, DateSubmitted) VALUES ({$_REQUEST['MBID']}, $Parent, ".$Name.", ".$Email.", '$Title', '$Message', $CurrentTime);");
        if ($result) {
            echo "Your message has been posted - thanks!<br /><br />";
            echo "<A HREF=\"mbindex.php?MBID={$_REQUEST['MBID']}\">Back to messageboard</a>";
            exit;
        } else {
            echo "There was a problem with your post - please try again.<br /><br />";
        }
    }
?>     
<form method="post" action="post.php">

Message title: <input type"text" name="Title" /><br /><br />
Message:<BR />
<textarea name="Message" rows="10" cols="40"></textarea><br /><br />
<input type="hidden" name="MBID" value="<?php echo $_REQUEST['MBID']; ?>" />
<input type="hidden" name="Parent" value="<?php echo $Parent; ?>" />
<input type="submit" value="Post" />
</form>

您將$ name轉換為字符串:

use implode("|",$name);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM