i am using curl and trying to get the selected items from a select list using DOMXPath I am close, i can get the selects and their options , just can not figure out how to tell if one is selected.
so here is my code so far. i can get the select name and all the option text and values
$newDom = new domDocument;
$newDom->loadHTML($result);
$xpath = new DOMXPath($newDom);
$values = $xpath->evaluate("/html/body//select");
for ($cnt = 0; $cnt < $values->length; $cnt++) {
$value = $values->item($cnt);
$name = $value->getAttribute('name');
$options = $xpath->query("*/select[@name='".$name."']/option");
foreach ($options as $option) {
$optionValue = $option->getAttribute('value');
$optionContent = $option->nodeValue;
}
}
So i replaced
$options = $xpath->query("*/select[@name='".$name."']/option");
with
$options = $xpath->query("*/select[@name='".$name."']/option[@selected='selected']");
And now the $options is empty
the html looks like
<select name=inc_paytype>
<option value="0">None<option value="1">Cash/Check<option value="2" selected>Credit<option value="3">ECash<option value="4">EFT<option value="5">Credit once, then cash/check
</select>
Thanks for any help

if ($option->getAttribute('selected') == 'selected')But this is only of use for the default selected option in the markup you loaded into DOMDocument. – Michael Berkowski Oct 6 '12 at 21:51*/select[@name='".$name."']/option[@selected='selected']– Michael Berkowski Oct 6 '12 at 21:53selectedis not an XHTML style attributeselected='selected'– Michael Berkowski Oct 6 '12 at 22:06