Hi, I need some help with php. I have a file index.html. I want to replace the links of the index.html, so I write:
Then I have menu_template.txt:
I also have terms.txt:
I want to replace %menu% in index.html file with text in menu_template.txt. In menu_template.txt I want to multiple the text and replace %text_menu% with the terms from terms.txt.
The output will be like this:
Would someone please help me? Please PM me or replay this post. Thank you.
Code:
<body>
%menu%
</body>
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://mysite.com/images/bullet.jpg"></td><td width="1061"><a style="font-family: Verdana; font-size: 11px; text-decoration: none" href="http://mysite.com/folders/">%text_menu%</a></td></tr></table>
I also have terms.txt:
Code:
A
B
C
I want to replace %menu% in index.html file with text in menu_template.txt. In menu_template.txt I want to multiple the text and replace %text_menu% with the terms from terms.txt.
The output will be like this:
Code:
<body>
<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://mysite.com/images/bullet.jpg"></td><td width="1061"><a style="font-family: Verdana; font-size: 11px; text-decoration: none" href="http://mysite.com/folders/">A</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://mysite.com/images/bullet.jpg"></td><td width="1061"><a style="font-family: Verdana; font-size: 11px; text-decoration: none" href="http://mysite.com/folders/">B</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://mysite.com/images/bullet.jpg"></td><td width="1061"><a style="font-family: Verdana; font-size: 11px; text-decoration: none" href="http://mysite.com/folders/">C</a></td></tr></table></body>
Would someone please help me? Please PM me or replay this post. Thank you.







