php search and replace first element in div
- by cnotethegr8
i have a structure that looks like this
<div class="table">
<div> <p> name1 </p> <p> title1 </p> </div>
<div> <p> name2 </p> <p> title2 </p> </div>
<div> <p> name3 </p> <p> title3 </p> </div>
</div>
and it continues a few hundred more times. what can i write in php that will search ( class="table" div ) and add a class to only the first 'p' in each 'div'?