Yea i have an other error and im kinda new to php i fixed a couple i think its on line 52 now if you want u can help out and download it agian the new one
man your code's shocking - people dont mind helping out if you're stuck, but i think you'll find people are fairly unwilling to help if you're just too lazy to check your code yourself. The error is telling you which line the problem is on, so have a look at it and see what you're doing with your code. In this case we have:
So, where to start.
You start your echo and open it with quotes, so when it gets to your <img src-" bit it's thinking that the " is closing the echo quote. So you have to slash it out with a \. what that does is tell the php engine that the character that comes next should be ignored by the engine. That way, it echo's out the character but carries on echoing out the line.
Then for some reason, despite already being in php mode, you try to go into php mode again. The line should read:
I'll warn you that that's not going to help matters much though - you need to just go through, correct each mistake in turn (like for example a few lines later on you have a } for no apparent reason.
Take more care in your code, and then take the time to look for obvious mistakes when they're pointed out to you by the php engine. And it's not good form to just whack up and entire script and expect someone else to wade through it to spot all your mistakes - come with genuine problems and gripes and you'll get plenty of help.
Bookmarks