Trying to get this solved i think it is with the quotes that is why i was trying to play with the back slash but it still not working.
the following line of code:
<a href='images/content/$row['image']' class='prettyPhoto zoom'></a>
Trying to get this solved i think it is with the quotes that is why i was trying to play with the back slash but it still not working.
the following line of code:
<a href='images/content/$row['image']' class='prettyPhoto zoom'></a>
You're using single quotes inside single quotes.
Try removing the single quotes around "image". Like so:
<a href='images/content/$row[image]' class='prettyPhoto zoom'></a>
You can only use this if your echo statement is using double quotes.
How about this?