Hi,
Can someone please give me an example of how i can use preg_replace for a link such as:
<?php
echo"<a href=\"make.php?id=$id&modelname=$name\">$name</a>";
?>
to be changed to..
<?php
echo"<a href=\"make/$name-$id.html\">$name</a>";
?>
Thanx in advance!