Connecting Tech Pros Worldwide Help | Site Map

mySpace blog on Homepage

  #1  
Old August 9th, 2006, 04:15 PM
amiri.arash@gmail.com
Guest
 
Posts: n/a
Hi!
I want to feed the news section of my band - homepage with the mySpace
blog of our band (in order to keep redundancy low).

The band homepage is written in PHP.

I wrote an xsl-stylesheet that transforms the blog into my wanted
design.

Here is the code:

<?

$doc =
domxml_open_file("http://blog.myspace.com/blog/rss.cfm?friendID=70463944");
$xsl = domxml_xslt_stylesheet_file("blogMySpace.xsl");
$params = array();
$result = $xsl->process($doc,$params,false);

$wholepage = $result->dump_mem();
print $wholepage;
?>


I cant get rid of "&nbsp;" being displayed from the <descriptiontag.

Anybody knows how to get rid of them?

str_replace('&nbsp;',' ') doesnt work.
a translate function in the xsl does not work as well....

anybody got an idea?

please help...

  #2  
Old August 10th, 2006, 07:35 AM
dawnerd
Guest
 
Posts: n/a

re: mySpace blog on Homepage



amiri.arash@gmail.com wrote:
Quote:
Hi!
I want to feed the news section of my band - homepage with the mySpace
blog of our band (in order to keep redundancy low).
>
The band homepage is written in PHP.
>
I wrote an xsl-stylesheet that transforms the blog into my wanted
design.
>
Here is the code:
>
<?
>
$doc =
domxml_open_file("http://blog.myspace.com/blog/rss.cfm?friendID=70463944");
$xsl = domxml_xslt_stylesheet_file("blogMySpace.xsl");
$params = array();
$result = $xsl->process($doc,$params,false);
>
$wholepage = $result->dump_mem();
print $wholepage;
?>
>
>
I cant get rid of "&nbsp;" being displayed from the <descriptiontag.
>
Anybody knows how to get rid of them?
>
str_replace('&nbsp;',' ') doesnt work.
a translate function in the xsl does not work as well....
>
anybody got an idea?
>
please help...
It's probably a problem on MySpace's side. I don't know too much about
xml, so I can't be of too much help.

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to Create SWF File For embedding to Website, Blog, MySpace, WordPress, etc lalano answers 1 September 12th, 2008 09:33 AM
General PHP applications odwrotnie answers 9 March 23rd, 2006 02:25 PM