willsavin Posted September 5, 2008 Share Posted September 5, 2008 hi all, I have been trying to write some code for php footer recently and have stumbled upon some issues.. What i'm trying to do is find a specific html tag within a page. E.g <h1 align="right">blahblah</h1> and echo the data inside of that found tag E.g blahblah I can never figure out this regex stuff! ??? Thanks in advance willsavin Quote Link to comment https://forums.phpfreaks.com/topic/122947-echoing-data-inside-html-tags/ Share on other sites More sharing options...
nrg_alpha Posted September 6, 2008 Share Posted September 6, 2008 If you are looking for the contents of h1 tag specifically for example, you can use: $str = '<h1 align="right">blahblah</h1>'; preg_match('#<h1[^>]*>([^<]+)</h1>#', $str, $match); echo $match[1]; // outputs blahblah As for regex, I would suggest taking the time to learn it.. comes in veeeeery handy! EDIT: and before you ask for some good links / references.. I'll spare Effigy the time and simply offer here as a good starting point. Quote Link to comment https://forums.phpfreaks.com/topic/122947-echoing-data-inside-html-tags/#findComment-634986 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.