Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6776907
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:05:05+00:00 2026-05-26T16:05:05+00:00

I think i don’t get it. I tried to parse some html page :

  • 0

I think i don’t get it. I tried to parse some html page :

<select name="sel">
  <option value="val0">-please select me-</option>
  <option value="val1">some selection</option>
</select>

Im using the Simple_html_dom class :

foreach($html->find('select') as $s) {
    if ($html->find('option',1) != false) {
      $tempoption = $html->find('option',1)->plaintext;
      echo $tempoption; //shows 'some selection'
    }
}

but, then if i simply use this line :

$value='';
if ( $tempoption == 'some selection')
   $value='79';
echo $value; //doesn't shows anything (empty variable?)

//or this one :
if ( strcmp($tempoption, 'some selection'))
   $value='79';
echo $value; //Nope.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T16:05:06+00:00Added an answer on May 26, 2026 at 4:05 pm

    I tried out the code just as you had it there and $value DID end up with 79. But I think that you must have more to your HTML than that tiny snippet. The thing in your code that stood out most to me was the fact that you are wrapping the conditionals in a loop that goes through all the selects of the HTML, but you are not making use of the individual select elements that you get from the loop, so the foreach loop seems pointless..

    Have a look at this:

    foreach($html->find('select option') as $o) 
    {
      $o_label = $o->plaintext;
      if($o_label=='some selection') echo 'PERFECT MATCH: '.$o_label."\n"; 
      else if(stripos($o_label, 'some selection')!==false) echo 'LOOSE MATCH: '.$o_label."\n"; 
      else echo 'DOES NOT MATCH: '.$o_label."\n";
    }
    

    When given HTML:

    <select name="sel">
      <option value="val0">-please select me-</option>
      <option value="val1">1 some selection</option>
      <option value="val1">This does not match</option>
      <option value="val1">some selection</option>
      <option value="val1">Another non-matching label</option>
      <option value="val1">some selection 3</option>
      <option value="val1">One more that does not match</option>
      <option value="val1">4 SoME sElEcTIon 4</option>
    </select>
    

    The output will be:

    DOES NOT MATCH: -please select me-
    LOOSE MATCH: 1 some selection
    DOES NOT MATCH: This does not match
    PERFECT MATCH: some selection
    DOES NOT MATCH: Another non-matching label
    LOOSE MATCH: some selection 3
    DOES NOT MATCH: One more that does not match
    LOOSE MATCH: 4 SoME sElEcTIon 4
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I don't think this is possible, but I'll ask anyway... Is there some way
I think I don’t quite get the idea behind the proper usage of Backbone
I've tried searching for this a few times, but I just think I don't
I don’t think I’ve grokked currying yet. I understand what it does, and how
I don't think this is possible, but if is then I need it :)
I don't think that this is specific to a language or framework, but I
I don't think this can be done cleanly, but I'll ask anyway. I have
I don't think this is particularly quirky, but in an attempt to control my
I don't think this is technically a macro but I don't know what else
I don't think that this could be done in C#, but posting this just

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.