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 Mike Lewis 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: *

  • Users: someoneneedshelps
  • Order by date
  1. someoneneedshelps

    simple dom problem

    Thank you to everyone for the help.
  2. someoneneedshelps

    enter two submits from a form

    Cool
  3. someoneneedshelps

    foms in php problem

    ....mmmh.. what does this var_dump say about my button? array(3) { ["shippingcost"]=> string(0) "" ["urlstr"]=> string(0) "" ["submit"]=> string(12) "Submit Query" }
  4. someoneneedshelps

    enter two submits from a form

    what about form to another form and the last value hidden has its value in the second form?
  5. someoneneedshelps

    enter two submits from a form

    Yep, thanks vacunita, what if I want to be presented with: 1. entry box for data, then once that was submitted another box asking for 1 more piece of data, whats the best way with php, still getting to grips with the code
  6. someoneneedshelps

    foms in php problem

    form elements, yup! consider this solved.
  7. someoneneedshelps

    simple dom problem

    Now I get it... next question, where do my credentials get entered above? my file is on my server so I need to to knock on the door and let ebay let me in for data
  8. someoneneedshelps

    foms in php problem

    you mean like this? <input type="Submit" name="submit">
  9. someoneneedshelps

    foms in php problem

    even this don't work, just keeps going back to the form $urlstr = filter_input(INPUT_POST, 'urlstr'); $shipcost = filter_input(INPUT_POST, 'shipcost'); if(isset($_POST['submit'])) { if(!empty($urlstr) && !empty($shipcost)) { echo $urlstr; } else { echo "Both fields must be...
  10. someoneneedshelps

    foms in php problem

    What is wrong with this please? have two fields and both must have value but im getting lost, I have the submit button and the values think about and the form to display $urlstr = filter_input(INPUT_POST, 'urlstr'); $shipcost = filter_input(INPUT_POST, 'shipcost'); if(!empty($urlstr) &&...
  11. someoneneedshelps

    simple dom problem

    the tutorial is not clear at all with parsing the data, it gives a result back for a keyword search, that's not what I want
  12. someoneneedshelps

    simple dom problem

    below is sample code, but all I want is what I did above, the result of what im searching for, how can I do this with below and break it down to look for lets say, the shipping cost.. <html> <head> <title>eBay Search Results</title> <style type="text/css">body { font-family: arial,sans-serif;}...
  13. someoneneedshelps

    simple dom problem

    Hi can I possibly see a very simple call with the api pulling a bit data out by item number please? I have registered but not a clue where to start
  14. someoneneedshelps

    enter two submits from a form

    Hi I'm trying to build a insert statement, on the first call from the form this information is filled is $sqlstatement = "INSERT INTO auctions...
  15. someoneneedshelps

    mimic tpl in php with html in?

    its not smarty, for instance the call to template file here $template->set_filenames(array( 'body' => 'sell.tpl' )); $template->display('body'); the sell.tpl has this variable set, this is the only instance in the sell.tpl file, <input type="hidden" name="csrftoken"...
  16. someoneneedshelps

    mimic tpl in php with html in?

    I hawe the include file at the top where this is in another file...
  17. someoneneedshelps

    mimic tpl in php with html in?

    I just get this within the source <b>Notice</b>: Undefined variable: csrftoken in <b>/home/garyjacobjack/public_html/auctioneerslive.co.uk/importdata_trk_access.php</b> on line <b>112</b><br /> ">
  18. someoneneedshelps

    mimic tpl in php with html in?

    How do I do this <input type="hidden" name="csrftoken" value="{_CSRFTOKEN}"> with a php file that uses standard html in the form? this doesn't work <input type="hidden" name="csrftoken" value="<?php echo $_CSRFTOKEN; ?>">
  19. someoneneedshelps

    foms in php problem

    So the code is correct its just the structure
  20. someoneneedshelps

    simple dom problem

    bidders have a control panel that allows them to place ebay url and it imports everything into another bidding site saving time copying pasting etc ... is it possible to use fragments of the api to replace simple dom? ...is loadhtml for php any better that simple dom or they similarTs

Part and Inventory Search

Back
Top