I'm using PHPNuke and i get the following error:


Parse error: parse error, unexpected '\"', expecting ',' or ';' in /home/jadedf/public_html/portal/themes/3D-Fantasy/theme.php on line 58

line 58 is below and it is the only line i've played around with in the theme.php file..i'm trying to get an image for my background. help!

"<body bg=\"graybg.jpg" "text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">\";

whats wrong with it?

thanks,
tim

Recommended Answers

All 2 Replies

It should be..

"<body bg=\"graybg.jpg\" text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">";

I THINK. I don't use PHPNuke but it seems you just incorrectly escaped the string.

echo "<body background=\"graybg.jpg\" "text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">";

Shoud be working.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.