|
unexpected T_STRING generally means that it's found text that's not normal code outside of " " quotes or ()'s. The code you've shown us I can't see anything wrong with it. But not having the entire code in front of me, it's hard to tell.
What I will ask though, I presume the line in error is the one under "Personal Image" in your example. Are you echoing this, or outputting by closing and re-opening <?php ?> tags? Might be worth just checking all your quoting, and that you've escaped everything you need to around that area.
It's also worth noting, and that to minimize the risk of getting these sorts of errors when you're outputting a lot of HTML in a PHP script to output all your HTML outside <?php ?> tags, and use <?=$var_name?> to put in variable names. This method allows you to use as many quotes, brackets, and the likes, without it upsetting PHP. Using echo(".."); might be good for outputting just things like single variables, words, etc, but for large amount of content, try close the PHP tag, put your content in, and open the tag again to close your if statement or whatever you have.
Hope this helps.
__________________
Please login or register to view this content. Registration is FREE
1Gb hosting from as little as £1.49/€2.20/$3 /month - No kidding!
|