Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
If the attribute is specified, you should be able to get it from 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
And the xpath should look like */select[@name='".$name."']/option[@selected='selected'] – Michael Berkowski Oct 6 '12 at 21:53
I updated the original with more questions – randy Oct 6 '12 at 22:02
I don't know how DOMDocument will respond if selected is not an XHTML style attribute selected='selected' – Michael Berkowski Oct 6 '12 at 22:06
so is there anyway to get the string or html from option tag and manually look for selected? – randy Oct 7 '12 at 2:36

2 Answers

i found the answer. Not perfect but works.

$xpath = new DOMXPath($newDom);
$options = $xpath->query('/html/body//select');
foreach ($options as $option) {
       $name =$option->getAttribute('name');
       $children = $option->childNodes;
       foreach ($children as $child) {
            $tmp_doc = new DOMDocument();
            $tmp_doc->appendChild($tmp_doc->importNode($child,true));       
            if ( strstr( $tmp_doc->saveHTML() , "selected" ) ){
                 $optionValue = $child->getAttribute('value');
                 $optionContent = $child->nodeValue;
            }
       }
}
share|improve this answer

If an <option> is selected than the element will have a selected attribute.

Depending of the doctype the value of the attribute can be "selected" (XHTML and HTML), whatever value or no value at all (HTML), so just search for the presence of the attribute not a particular value.

Possible value for selected in HTML :

<option selected>
<option selected="selected"> // XHTML only allow this form
<option selected="">
share|improve this answer
1  
This doesn't answer the question, or even provide any new information. The code the asker showed in the question shows that he already knows this; he is already trying to check for the selected attribute in his xpath but it is not returning any results. Your answer doesn't even mention xpath, which is what the question is about. – Mark Amery Apr 2 at 16:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.