I want to read a html file and replace what ever is inside mytag.
so in html file we have something like this :
<div>
<h3><mytag>_THIS_DAY</mytag></h3>
<div>
[LOGIN]
</div>
</div>
and then in php file , i need to read the file and replace the values inside tags.
str_replace() ?
how to get the value inside those tags in php and then how to replace them with something like a string ?