Jump to content

Curl Search For Specific Variable


dsbpac

Recommended Posts

I was able to create a cURL code that pulls all the content from a website. I have a 3rd party page that outputs one of the following two codes depending on if the CC is accepted or declined.

<div id="[url=""]response_div[/url]" class="[url=""]webpay[/url]">
<span id="[url=""]response_label[/url]" class="[url=""]webpay[/url]">Response:</span> <span id="[url=""]response_value[/url]" class="[url=""]webpay[/url]">AVSSALE:TEST:::257943997:N::U</span>
</div>

 

<div id="[url=""]reason_div[/url]" class="[url=""]webpay[/url]">
<span id="[url=""]reason_label[/url]" class="[url=""]webpay[/url]">Reason:</span> <span id="[url=""]reason_value[/url]" class="[url=""]webpay[/url]">DECLINED:0720990009:CARD NO. ERROR:14</span>
</div>

 

 

How can I make a search_for_string to search for that variable and based on that, it returns a result?

 

This is my current code to pull all the information from the 3rd party site.

 

<?php
$ch = curl_init ("http://www.mypage.com");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
$mypage = curl_exec ($ch);
echo "$mypage";
?>

Link to comment
https://forums.phpfreaks.com/topic/272205-curl-search-for-specific-variable/
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.