|
Its because when using php the <? starts php into parsing. Unfortunately this statement with the xml version is not php so you must echo it out.
When you want to say this:
<?xml version="1.0" encoding="iso-8859-1"?>
Write this instead:
<?php echo('<?xml version="1.0" encoding="iso-8859-1"?>'); ?>
And you should stop getting errors.
-dk
__________________
Did I help you? If so, be nice and throw me some Please login or register to view this content. Registration is FREE
|