raytaylor Posted July 22, 2007 Share Posted July 22, 2007 Hey guys. I have a small amount of php knowledge. I am trying to have a header added to a page, and then the content so it will go something like: index.php: <header html code> <?php include (get_$content); ?> My queston is, would it be possible to add come code to my page so that when it calls / includes the content.htm page, all the links within the content.htm are converted to a variable so when someone clicks on it, it goes to <a href="processor.php?content=http://mysite.com/news/1jul.htm">news</a> On the physical 1jul.htm page, it can have just standard links like so: <a_href="http://mysite.com/news/1jul.htm">news</a> And then the code, will convert them to go through the processor.php and add the original destination url as a variable. Any ideas are greatly appreciated. Thanks Quote Link to comment Share on other sites More sharing options...
simon551 Posted July 22, 2007 Share Posted July 22, 2007 you may be able to change your a tags with javascript. don't think you can do any html processing with php. you can just print different html based on variables. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.