I'm having trouble deleting all objects with a category of 2 but only 2. Help please.
Code:if ( $_POST['deletechecker'] == 1 ) { $cat = 2; $file = '../xml/movies.xml'; $xml = simplexml_load_file($file); $i = 0; foreach($xml as $kid){ if($kid->cat[$i] == $cat){ unset($xml->mov[$i]); } $i ++; } $xml = $xml->asXML($file); }
xml
Code:<movies> <mov> <id>1324</id> <cat>2</cat> <movie>Sleepless In Seattle</movie> </mov> </movies>



Reply With Quote

Bookmarks