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 Link to comment https://forums.phpfreaks.com/topic/61170-converting-links-to-variables/ 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. Link to comment https://forums.phpfreaks.com/topic/61170-converting-links-to-variables/#findComment-304411 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.