I have a question regarding the DomDocument
In my previous questoin.. How to detect certain characters and wrap them with another string?
I can get the assign table to the string. However, there are some table cell that contains
<input type='text' value='input value'/>
so it's like
<td><input type='text' value='input value'/></td>
I want to remove the input
tag but still display the 'input value'
in my cell as there is no input box. I need it because I need to display my string in my email.
I can't really do it in the client side.
Is there anyway to do this? Thanks.