help

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
SystemFailure
Forum Newbie
Posts: 3
Joined: Fri Sep 05, 2008 9:16 pm

help

Post by SystemFailure »

fixed topic can be deleted
Last edited by SystemFailure on Sat Sep 06, 2008 3:11 pm, edited 6 times in total.
Cut
Forum Commoner
Posts: 39
Joined: Sat Aug 23, 2008 8:01 pm

Re: help

Post by Cut »

You need to mark the end of things with a semicolon.

Line 8 should be:

Code: Select all

$Artist2 = $row['Artist'];
You made this error all over the place. Adjust everything accordingly.

On line 11, you used a semicolon where one shouldn't be:

Code: Select all

while($row = mysql_fetch_array( $Album ));
{
SystemFailure
Forum Newbie
Posts: 3
Joined: Fri Sep 05, 2008 9:16 pm

Re: help

Post by SystemFailure »

Error is fully fixed topic can be closed/locked/deleted
Post Reply