How to remove a href attribute from all links from div element using php ?
Something like this:
if($condtion = "true"){
echo '<a href="" class="no-link">Please login</a>';
}
else{
echo '<a href="www.google.com" class="yes-link">Admin Section</a>';
}
I was searching for solution, but all what i found was solution with jquery
like this:
$(selector).removeAttr(attribute)
Thank you
divelement?