I'm making a html template that requires reletive links but for templeting i must use php (very noob), in the index file i'd like to remove all ../
from href an src, like this exemple:
page.php
scr="../img/image.jpg"
href="../contact/contact.php"
index.php
scr="img/image.jpg"
href="contact/contact.php"
How can I create a function to remove all ../
Thanks