Josh Close wrote:turn OFF short_open_tag in php.ini, or using theHow do I get an xml tag to work with a php script?
<?xml version="1.0"?>
php is trying to parse that.
-Josh
PHP_FLAG short_open_tag Off in your apache .htaccess file (if you're using that).
or
echo '<?xml version="1.0"?>'; or <?='<?=xml version="1.0"?>'?>
---John Holmes...
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php