Torkil Johnsen wrote: > > Yeah this is a BIT of topic... > > I have this code: > <? > header("Content-type: image/svg+xml"); > print('<?xml version="1.0" encoding="iso-8859-1"?>'); > ?> > > <?php $text="This page uses PHP and SVG"; ?> > > <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" > "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd" > > > > <svg xml:space="preserve" width="100%" height="20"> > <desc>Using styles</desc> > <rect style="fill:#333333" x="0" y="0" width="100%" height="145"/> > <text x="50" y="70" style="text-anchor:left; fill:#cccccc; font-size:26; > font-weight:15; font-family:Tahoma, Verdana; font-style:regular"><?php echo > $text; ?></text> > </svg> > > See for yourself at: > http://www.torkiljohnsen.com/xperiment/index.psvg > > This produces an error message (which you can read at the same page). > > Why is this? > I had an xml/svg "specialist" make this code and it works perfectly on his > server... Anyone got ANY clue as to why this is happening?
It is not an error. The server just returns the script contents in plain text, so it is not executed as a PHP script. You need to configure your server to either process this script as a PHP script (it could be as simple as rename its extension to .php) or configure it to process all files with extension .psvg as PHP scripts. Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]