Re: Foreach

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Jan 17, 2008 5:49 PM, Pastor Steve <smarquez@xxxxxxxxxxxxxxx> wrote:

> Here is my code:
>
>  $name = $_POST['name'];
>  if ($name) {
>  foreach ($name as $t) {
>
>        echo "$t";
>    }
>
>    $order = $_POST['order'];
>    if ($order) {
>    foreach ($order as $i) {
>
>
>            //Update the table in MySQL
>        $update_data = "UPDATE sections SET `order` = '$i' WHERE name =
> '$t'";
>        $response = mysql_query( $update_data, $cnx );
>        if(mysql_error()) die ('database error<br>'. mysql_error());
>
>        echo "$i";
>    }
>
> }
>
> }
>
> I am trying to get the information in name and order to update the
> database.
> So far, I can only get one or the other. Is there a way to do this?


there are a few different issues here; first of all; are you sure
$_POST['name']
and $_POST['order'] are even arrays?

-nathan

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux