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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.