Ok. I have a classifieds script. I also have a template. I built a function into it so for instance
/view.php?http://blahblah.html would include that page into the template.
Now, I want it so all links in the classifieds page have http://www.aoaforums.com/view.php? before them. any ideaS?
Hi,
Try: $f = eregi_replace("HREF=\"", "HREF=\"http://www.aoaforums.com/view.php?", $f);
firemouse2001
That doesn't seem to want to work.
it says the variable is undefined...
so I put
$f =""; before it.
The $f is returning null and nothing is happeneing. Any ideas?
or is $f represetitive of something i.e I'm missing something.