Jump to content

echoing data inside html tags


willsavin

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.