I need to find an html input that is in an html commented section
<!-- <input type="hidden" name="ab_cde" value="12345" /> -->
the code
foreach($html->find('input') as $element)
{
}
is not working to find it. How can it be done?