Quote:
Originally Posted by urbanxtremes Code: <a href='news_content.php?id=$id=$hpagesheader' title='$hpagesheader'> |
I suspect what you really want is
Code:
<a href='news_content.php?id=4&header=Some_header_string' title='Some header string'>
Using = to seperate the id and the header are going to complicate things in your news_content.php script
As
percepts said, you need
str_replace PHP Code:
echo "<a href='news_content.php?id=$id&header=".str_replace(' ', '_', $hpagesheader)."' title='$hpagesheader'>";