This is a very basic question but could not found answer
I want to get the inner html using php from the following html code
<strong class="large t55">text only</strong>
I want to echo "text only" in simple text not in bold.
This is a very basic question but could not found answer
I want to get the inner html using php from the following html code
<strong class="large t55">text only</strong>
I want to echo "text only" in simple text not in bold.
http://php.net/manual/en/function.strip-tags.php
echo strip_tags('<strong class="large t55">text only</strong>');