Hi, I need some help with php.
I want to replace multiple text with text from a folder.
content that I need to replace:
You will see there %site_folders%.I need to replace %site_folders%.
content of folders.txt:
The output will be then:
There are about more than 200 text that I need to replace please help me.
Thank you
I want to replace multiple text with text from a folder.
content that I need to replace:
Code:
<table id="AutoNumber1" style="border-collapse: collapse; font-family: Verdana; font-size: 11px; text-decoration: none" borderColor="#111111" cellSpacing="0" cellPadding="3" width="100%" border="0"><tr><td width="19"><img src="http://%site_url%/images/bullet.jpg"></td><td width="1061"><a style="font-family: Verdana; font-size: 11px; text-decoration: none" href="http://%site_url%/%site_folders%/">60 Minute Money
</a></td></tr></table><table id="AutoNumber1" style="border-collapse: collapse; font-family: Verdana; font-size: 11px; text-decoration: none" borderColor="#111111" cellSpacing="0" cellPadding="3" width="100%" border="0"><tr><td width="19"><img src="http://%site_url%/images/bullet.jpg"></td><td width="1061"><a style="font-family: Verdana; font-size: 11px; text-decoration: none" href="http://%site_url%/%site_folders%/">7 Eleven Franchise
</a></td></tr></table>
You will see there %site_folders%.I need to replace %site_folders%.
content of folders.txt:
Code:
A
B
The output will be then:
Code:
<table id="AutoNumber1" style="border-collapse: collapse; font-family: Verdana; font-size: 11px; text-decoration: none" borderColor="#111111" cellSpacing="0" cellPadding="3" width="100%" border="0"><tr><td width="19"><img src="http://%site_url%/images/bullet.jpg"></td><td width="1061"><a style="font-family: Verdana; font-size: 11px; text-decoration: none" href="http://%site_url%/A/">60 Minute Money
</a></td></tr></table><table id="AutoNumber1" style="border-collapse: collapse; font-family: Verdana; font-size: 11px; text-decoration: none" borderColor="#111111" cellSpacing="0" cellPadding="3" width="100%" border="0"><tr><td width="19"><img src="http://%site_url%/images/bullet.jpg"></td><td width="1061"><a style="font-family: Verdana; font-size: 11px; text-decoration: none" href="http://%site_url%/B/">7 Eleven Franchise
</a></td></tr></table>
There are about more than 200 text that I need to replace please help me.
Thank you




