On Wed, 1 Sep 2004 10:24:07 -0700 (PDT), Judy Picard
<[EMAIL PROTECTED]> wrote:
> > Prob 1: I am getting the following error: "Parse
> > error: parse error, unexpected ';' in
> > c:\inetpub\wwwroot\PTMemorandum6.php on line 89"

> > <!--  LINE 89 next -->
> > <TR><td>1 Trying <?php echo($SSN[$i-1]; ?></td>

Should be...

<TR><td>1 Trying <?php echo $SSN[$i-1]; ?></td>

> > Prob 2: Before the above error started, The
> > following
> > section was not creating 10 rows.
> >
> > ****************************************************
> > <TR><?php $count=10;
> >       for ($i=0; $i <$count; $i++): ?>

The <TR> should be inside the for loop.

-- 
Stut

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

Reply via email to