954,587 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

PHP Automatically replace "&" with "&"

I have a RSS reader on a web-page and the RSS it receives have links that contain "&" sign in them. For the page to be valid it needs to be changed to "&". I know this sounds stupid and unnecessary but I want to fix them.

Attached to this post is the PHP I use to get the RSS feed. Can someone help me modify it so i can have it change the "&" to "&"?

Attachments rss_no_bullet.php (2.97KB)
jonow
Junior Poster
104 posts since Jan 2009
Reputation Points: 10
Solved Threads: 0
 
Will Gresham
Master Poster
755 posts since May 2008
Reputation Points: 96
Solved Threads: 125
 

I barely know PHP and I don't know how to implement it.

jonow
Junior Poster
104 posts since Jan 2009
Reputation Points: 10
Solved Threads: 0
 

You can use PHP's str_replace.

$filtered_link=str_replace('&','&',$link_string);
SoftwareDev
Newbie Poster
3 posts since Jan 2010
Reputation Points: 10
Solved Threads: 0
 

urlencode();

the edited line is 108

$page .= "<div class='rss-title'><a target='_blank' href=\"$link\">$title</a></div>";
$page .= "<div class='rss-title'><a target='_blank' href=\"".urlencode($link)."\">$title</a></div>";
Attachments rss_no_bullet_mod.php (2.99KB)
almostbob
Posting Sensei
3,149 posts since Jan 2009
Reputation Points: 571
Solved Threads: 376
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: