| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Regular Join Date: Mar 2006
Posts: 491
![]() ![]() | Please help me with PHP! 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: 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> Code: A B C ????: NamePros.com http://www.namepros.com/programming/195133-please-help-me-with-php.html 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> |
| |
| | #2 (permalink) |
![]() Join Date: Jul 2005 Location: Coffs H, Australia
Posts: 3,456
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | I think I know what you mean, and this is the code you'll need to do it : http://www.namepros.com/code/189417-...-php4-5-a.htmlLet us know if you need any extra help with that! Best of luck cesarian, Rhett.
__________________ Free Forums / GoDaddy Coupon Codes (NEW DOMAIN!) / Free Arcade Script / <?='Your computer is '.(1?fine:broken).'.'?> |
| |
| | #3 (permalink) |
| NamePros Member Join Date: Apr 2005
Posts: 117
![]() ![]() | PHP Code:
Last edited by mikesherov; 05-08-2006 at 08:20 AM.
Reason: forgot a quote, thanks jim
|
| |
| | #4 (permalink) |
| NamePros Regular Join Date: Aug 2005 Location: NY, USA
Posts: 608
![]() ![]() ![]() ![]() ![]() ![]() | PHP Code:
__________________ ask me about the internet |
| |
| | THREAD STARTER #5 (permalink) |
| NamePros Regular Join Date: Mar 2006
Posts: 491
![]() ![]() | Thank you for the code but I do not really understand the first code(I am a beginner) and the second code did not work. The problem is that I want to replace %menu% but it won't replace it and what I need now is not only to replace %text menu% but also the url folders. So I have now also folders.txt. The script must then count the line in terms.txt and multiple the line in menu_template.txt and replace %text_menu% and %folders%. Output example: 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/hallo/">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/my/">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/world/">C</a></td></tr></table></body> ????: NamePros.com http://www.namepros.com/showthread.php?t=195133 Thank you |
| |