ItSolutionStuff.com

How to Get HTML Tag Value in PHP?

By Hardik Savani • May 14, 2024
PHP

Hello,

In this example, i will show you php get html tag value example. We will look at example of php get html element value by id. In this article, we will implement a php get html element value. This post will give you simple example of how to get html tag value in php.

Here, i will give you simple two examples how to get html tag value in php and another how to get value by id in php. so let's see both code and output as bellow:

PHP Get HTML Element Value

index.php

<?php

$htmlEle = "<html><body><p id='paragraphID'>This is ItSolutionStuff.com Example</p></body></html>";

$domdoc = new DOMDocument();

$domdoc->loadHTML($htmlEle);

$pTagValue = $domdoc->getElementById('paragraphID')->nodeValue;

echo $pTagValue;

Output:

This is ItSolutionStuff.com Example

PHP Get HTML Element Value By ID

index.php

<?php

$htmlEle = "<html><body><p>This is ItSolutionStuff.com Example 1</p><p>This is ItSolutionStuff.com Example 2</p></body></html>";

$domdoc = new DOMDocument();

$domdoc->loadHTML($htmlEle);

$pTags = $domdoc->getElementsByTagName('p');

foreach ($pTags as $p) {

echo $p->nodeValue, PHP_EOL;

}

Output:

This is ItSolutionStuff.com Example 1

This is ItSolutionStuff.com Example 2

i hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

PHP Generate QR Code using Google Chart API Example

Read Now →

PHP Explode Every Character into Array Example

Read Now →

PHP Remove Element from Array by Value Example

Read Now →

How to Remove Last Element from Array in PHP?

Read Now →

How to Remove First Element from Array in PHP?

Read Now →

PHP Curl Delete Request Example Code

Read Now →

How to Generate 4,6,8,10 Digit Random number in PHP?

Read Now →

PHP - How to replace image src in a dynamic HTML string

Read Now →

PHP Remove Directory and Files in Directory Example

Read Now →

MySQL Query to Get Current Year Data Example

Read Now →

How to Remove Null Values from Array in PHP?

Read Now →