Deanznet Posted January 20, 2010 Share Posted January 20, 2010 Okay how do i screen scrap hidden input fields? <input type="hidden" name="animal" value="zebra"> <input type="hidden" name="color" value="white"> Can someone show me a code? Im not good with pregmatch ! thanks! Quote Link to comment https://forums.phpfreaks.com/topic/189098-screen-scrap-help/ Share on other sites More sharing options...
MadTechie Posted January 20, 2010 Share Posted January 20, 2010 I'll start you off $HTML = <<<HTML <input type="hidden" name="animal" value="zebra"> <input type="hidden" name="color" value="white"> HTML; preg_match('/<input type="hidden" name="animal" value="([^"]+)">/', $HTML, $regs); $result = $regs[1]; echo $result; Quote Link to comment https://forums.phpfreaks.com/topic/189098-screen-scrap-help/#findComment-998356 Share on other sites More sharing options...
Deanznet Posted January 20, 2010 Author Share Posted January 20, 2010 Hey thanks! But i just got more problems lol! See if you can understand this. I need to post this information for to the page. <form method="post" action="http://site.com/Firststep1.php" onsubmit="return check();"> <input class="n" id="a" type="text" value="" size="3" maxlength="3" name="a"/> ) <input class="n" id ="p" type="text" value="" size="3" maxlength="3" name="p"/> <input class="n" id="n" type="text" value="" size="4" maxlength="4" name="n"/> <input type="submit" value="submit" name="submit1"> </form> before the results i want to grab are displayed. After that is posted to the page I want to grab the info on Firststep1.php <input type="hidden" name="animal" value="zebra"> <input type="hidden" name="color" value="white"> And echo it like this Zebra:White I think i need to use Curl any idea?!@! Quote Link to comment https://forums.phpfreaks.com/topic/189098-screen-scrap-help/#findComment-998966 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.