Jump to content

character replaceing


cmb

Recommended Posts

all i want is for when their is a _ to be replaced with a space so i tried these and neither worked

<?php
$pmod = str_replace("_"," ",$p);
$pmod = preg_replace("_"," ",$p);
?>

so i was wondering if because this was in a while statement, is this the reason its not working, and if so how should i fix it (this is the while)

<?php
while ($z <= $w){
$p = $multi[$z];
        $pmod = str_replace("_"," ",$p);
echo "<a href='tag.php?tag=$p'" . $p . ">" . $pmod . "</a> ";
$z++;
}
?>

Link to comment
https://forums.phpfreaks.com/topic/260541-character-replaceing/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.