Jump to content

Multiple Queries


Kaitosoto

Recommended Posts

I found this, but I dont get how multiple queries work. Do all queries have to be stored in variables? If so, then how in the world do I execute an update query or replace? Can someone please tell me and if possible, show me an example?

[code]<?php

function connectDb($user, $pass, $host, $db) {
    //this function connects to a mysql server
    $sock = mysql_connect($host, $user, $pass);
 
    //this function connects to a mysql database, once a server has been reached.
    if(isset($sock)) {
        if(!mysql_select_db($db, $sock)) {
            echo mysql_error();
        }
    }
    return $sock;
}


//simple use of the function
$socket = connectDb('bilbo','b@gg1ns','localhost','test');

//create an sql query
$sql = "SELECT *  FROM sample";

//perform the query and return a resource identifier to $query
$query = mysql_query($sql, $socket);

//show all the data via a while loop
while($data = mysql_fetch_assoc($query)) {
    //using foreach, list all the data that was returned in the $data array from mysql_fetch_assoc
    foreach($data as $key => $value) {
        echo $key.' = '.$value.'<br />';
    }
    echo '<br />';
}

?>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/24316-multiple-queries/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.