Jump to content

Screen Scrap.. Help


Deanznet

Recommended Posts

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;

Link to comment
https://forums.phpfreaks.com/topic/189098-screen-scrap-help/#findComment-998356
Share on other sites

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?!@!

 

Link to comment
https://forums.phpfreaks.com/topic/189098-screen-scrap-help/#findComment-998966
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.