On Thu, Feb 03, 2005 at 08:25:43PM +0800, Alp wrote:
> Thanks to both of you. Unfortunately I have found out it was due to another
> reason: in one function I am trying to insert 3 sets of data into 3 seperate
> tables. In trying to accomplish that I am using a 'for' loop. The minute I
> write in the second 'for' loop I loose the page in browser and receive this
> parse error pointing to the last line of code.
> 
> Any ideas to how I can overcome this? The loop I am using is given below.
> 
> Thanks in advance.
> 
> Alp
> Code:
>  for ($c=0;$c<count($_POST['inctourid']);$c++) {
>   if ($_POST['inctourid'][$c]!="" && $_POST['included'][$c]!=""){
>    $sql = "INSERT INTO tour_includes (tour_id, included) VALUES
> ('{$_POST['inctourid'][$c]}', '{$_POST['included'][$c]}')\n";
>   }
>   if (! mysql_query($sql, $link))
>    {
>    $dberror = mysql_error();
>    return false;
>    }
> // for ($i=0;$i<count($_POST['extourid']);$i++) {
> //  if ($_POST['extourid'][$c]!="" && $_POST['excluded'][$c]!=""){
> //   $sql = "INSERT INTO tour_excludes (tour_id, excluded) VALUES
> ('{$_POST['extourid'][$c]}', '{$_POST['excluded'][$c]}')\n";
> //  }
> //  if (! mysql_query($sql, $link))
> //   {
> //   $dberror = mysql_error();
> //   return false;
> //   }

    }   // Add closing brace here

-- 
Jim Kaufman
Linux Evangelist
public key 0x6D802619, CISSP# 65668
http://www.linuxforbusiness.net
---
The most merciful thing in the world ... is the inability of the human mind to
correlate all its contents.
                -- H. P. Lovecraft

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to