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 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. 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
Archived
This topic is now archived and is closed to further replies.