Jump to content

mysqli_multi_query store data into variable


CarolHCX

Recommended Posts


    //multi query
    $sql= "SELECT option_value FROM settings WHERE option_name = 'email_temp_issue';";  //1
    $sql .="SELECT title FROM books WHERE id = '$bookid';";  //2
    $sql .="SELECT fullName from students WHERE email = '$username'";  //3
    $sql_run = mysqli_multi_query($connection,$sql);
    if(mysqli_num_rows($sql_run)>0)
    {
        foreach ($sql_run as $row)
        {
            $email_template = $row['option_value']; //retrieve from query 1
            $title = $row['title']; //retrieve from query 2
            $name = $row['fullName']; //retrieve from query 3
        }
    }

I am trying to store the data from the multi query into each variable, which I am not sure how to do..Anyone can help? :)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.