Jump to content

foreach loops


Woodburn2006

Recommended Posts

i use the following code to put some values into a DB:

 

foreach($_POST['driver'] as $driver){
		$query = mysql_query("INSERT INTO results (driver) VALUES ('$driver')") or die(mysql_error());
		mysql_query($query, $connection);
		}

 

it works fine for that purpose but i need to add other values from other arrays onto the same rows, is there any way of doing this?

 

this is the page i am working with: http://www.upks.co.uk/admincontrol/index2.php?go=results_add

Link to comment
https://forums.phpfreaks.com/topic/78152-foreach-loops/
Share on other sites

As an example....

 

<?php

    $a = array(1,2,3);
    $b = array(4,5,6);
    $c = array(7,8,9);

    foreach ($a as $x) {
        $y = current($b);
        $z = current($c);
        echo "INSERT INTO tbl (a,b,c) VALUES ($x,$y,$z)\n";
        next($b);
        next($c);
    }  

?>

Link to comment
https://forums.phpfreaks.com/topic/78152-foreach-loops/#findComment-395617
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.