Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. neoJato

    Select and Display

    Thx for all of the above help... figured out my problem though...I was looking in the wrong place...
  2. neoJato

    Select and Display

    What do you mean by "are the choices posted correctly"?? print_r($_POST) yields: Array ( [q] => 'searchQuery' ) //searchQuery is the text that was searched for displays this ten (10) times (results limited to ten max)
  3. neoJato

    Select and Display

    I tried the above example (jpadie) and I'm still having issues... below is a little more of the above code (using the last example) <? if (is_array($result['resultElements'])) { foreach ($result['resultElements'] as $r) { if ($_POST['choice'] == "first") { do...
  4. neoJato

    Select and Display

    //This is the drop-down option box <form> <select size="1" name="choice"> <option value="first">First</option> <option value="second">Second</option> <option value="third">Third</option> <option value="fourth">Fourth</option> </select> </form> //Below is similar to how i want the...
  5. neoJato

    Select and Display

    I am trying to create a search for my website and I am running into some troubles... I have the search field (where the user enters the text to search for)...and then below I have a drop-down option box with different options of way to display the results... The problem I have is that when the...

Part and Inventory Search

Back
Top