Re: [PHP] XML and PHP - dynamic hell

2001-12-01 Thread Chris

It didn't help :(
- Original Message - 
From: "Matthew Loff" <[EMAIL PROTECTED]>
To: "'Chris'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Saturday, December 01, 2001 10:03 AM
Subject: RE: [PHP] XML and PHP - dynamic hell


> 
> Did you try adding:
> 
> header("Content-Type: text/xml");
> 
> To the top?
> 
> 
> -Original Message-
> From: Chris [mailto:[EMAIL PROTECTED]] 
> Sent: Saturday, December 01, 2001 12:34 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] XML and PHP - dynamic hell
> 
> 
> I'm having one page output XML for other sites to parse. Unfortunately
> if I
> give an RSS parser the site (the php file) it errors out. But if I put
> the
> output in a XML file, and give that to the RSS parser everything works
> perfectly. Does anyone know why it can't read it straight from the php
> file?
> PHP Builder has it working, I have no idea why mine doesn't. Thanks
> 
> Source:
> 
>  require "division/settings.inc";
> require RootPath . "admin/Admin.php";  //these just define mysql logins
> and
> such
> echo "<" . "?xml version=\"1.0\"?" . ">\n";
> echo " 0.91//EN\"
> \"http://my.netscape.com/publish/formats/rss-0.91.dtd\";>\n";
> echo "\n";
> echo "\n";
>   $query = mysql_query("Select * from " . PREFIX . "news order by Date
> Desc
> Limit 40");
>   while($results = mysql_fetch_array($query))
>   {
>echo "\n";
>echo "" . stripslashes($results["Subject"]) . "\n";
>echo "http://dod.stronger.org/\n";
>echo "$results[Name]\n";
>echo "" .
> substr(htmlspecialchars(stripslashes($results["News"])),0,150) .
> "...\n";
>echo "\n";
>  }
> ?>
>   
> 
> 
> 
> -- 
> 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]
> 


-- 
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]




RE: [PHP] XML and PHP - dynamic hell

2001-12-01 Thread Matthew Loff


Did you try adding:

header("Content-Type: text/xml");

To the top?


-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, December 01, 2001 12:34 AM
To: [EMAIL PROTECTED]
Subject: [PHP] XML and PHP - dynamic hell


I'm having one page output XML for other sites to parse. Unfortunately
if I
give an RSS parser the site (the php file) it errors out. But if I put
the
output in a XML file, and give that to the RSS parser everything works
perfectly. Does anyone know why it can't read it straight from the php
file?
PHP Builder has it working, I have no idea why mine doesn't. Thanks

Source:

\n";
echo "http://my.netscape.com/publish/formats/rss-0.91.dtd\";>\n";
echo "\n";
echo "\n";
  $query = mysql_query("Select * from " . PREFIX . "news order by Date
Desc
Limit 40");
  while($results = mysql_fetch_array($query))
  {
   echo "\n";
   echo "" . stripslashes($results["Subject"]) . "\n";
   echo "http://dod.stronger.org/\n";
   echo "$results[Name]\n";
   echo "" .
substr(htmlspecialchars(stripslashes($results["News"])),0,150) .
"...\n";
   echo "\n";
 }
?>
  



-- 
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]


-- 
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]