Hi,This is my php file.
I want to replace
$$FullName$$ with Jon Rama
And $$FirstName$$ with Jon and $$Gender$$ with Male
And create to new file Jon_Rama.php
<table width="100%">
<tr>
<td align="center">
<b>
<h1 class="title_list">$$FullName$$</h1>
</b>
<br><br>
</td>
</tr>
<tr>
<td>$$FirstName$$ is a $$Gender$$.</td>
</tr>
</table>
How to do this??