Re: [PHP-DB] Shopping cart application question

2010-04-04 Thread Ron Piggott

I have done something like you have said below Chris.

I put the code which is common to be loops in it's own file and I did an
INCLUDE

Ron





-Original Message-
From: chris smith dmag...@gmail.com
To: ron.pigg...@actsministries.org
Cc: php-db@lists.php.net
Subject: Re: [PHP-DB] Shopping cart application question
Date: Sun, 4 Apr 2010 13:36:05 +1000


 The  } else {  confuses PHP.  I am not sure what I should be doing.

You're missing at least one brace.

If the code you supplied is a copy of what you have, you're missing a
} for the end of the while loop and one for the end of the else
condition.

So it's treating } else { as part of the while construct (and while()
doesn't have anything like an else condition).

 if ( $_SESSION['user_reference']  0 ) {

snip

 $i=0;
 while ( $i  $cart_records_found ) {


} // end while


 } else {

 foreach ($_SESSION['order'] AS $key = $value ) {

 }


} // end else condition



Re: [PHP-DB] Shopping cart application question

2010-04-03 Thread Nilesh Govindarajan

Quote snip

I didn't understand your problem. Explain clearly.

--
Nilesh Govindarajan
Site  Server Administrator
www.itech7.com
मेरा भारत महान !
मम भारत: महत्तम भवतु !

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



Re: [PHP-DB] Shopping cart application question

2010-04-03 Thread chris smith
 The  } else {  confuses PHP.  I am not sure what I should be doing.

You're missing at least one brace.

If the code you supplied is a copy of what you have, you're missing a
} for the end of the while loop and one for the end of the else
condition.

So it's treating } else { as part of the while construct (and while()
doesn't have anything like an else condition).

 if ( $_SESSION['user_reference']  0 ) {

snip

 $i=0;
 while ( $i  $cart_records_found ) {


} // end while


 } else {

 foreach ($_SESSION['order'] AS $key = $value ) {

 }


} // end else condition

-- 
Postgresql  php tutorials
http://www.designmagick.com/

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