|
-
[RESOLVED] How I remove a href link in between div class?
I'm trying figure out how remove a href link between div class on php script but tough is:
normal display:
<div class="showtimes"> <a href="#">10:00am</a> <span class="ghost">|</span> <a href="#>10:30am</a> <span class="ghost">|</span> <a href="#>11:00am</a> </div>
I need php script remove a href link change to like:
<?php
$page = preg_replace('/<div class\=[\"]showtimes[\"]\>(.*?)<\/div>/si','\\1',$page);
?>
<div class="showtimes"> 10:00am <span class="ghost">|</span> 10:30am <span class="ghost">|</span> 11:00am </div>
How I do remove a href link only in between div class?
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
|
Bookmarks