This is the code I am using:
include 'simple_html_dom.php';
$html = file_get_html('index.html');
echo $html->find('tr', 15);
This will find the row 15 of the table. What I want to do is to remove that row completely.
I have already tried
$html->find('tr', 15)=null;
But that does not seem to work. I have tried finding the info on the SimpleHTMLDom documentation but it does no contain much information.