Jump to content

[SOLVED] preg_match help


slpctrl

Recommended Posts

Hello, I need help here. I need to get a page in curl, double the random number and submit it. I know how to do this, but for some reason preg_match_all isn't retrieving the number. Here is what I got:

 

 

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"$url");
//other options etc etc
$result = curl_exec($ch);
curl_close($ch);
preg_match_all("/return ([a-zA-Z0-9]*)/", $result, $matches);
$string = $matches[1][0];
echo $string;
?>

 

And the HTML is gonna look something like this:

 

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Firm Investments</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<center>
<br /><b>You have 1 second to double and return: <hr>7998427334242<hr><form method="get">
Number <input type="text" name="number"><p />

<input type="submit" value="Remove" style="border:solid 1px;">
</form>
</div>
</body>
</html>

 

 

Why wouldn't this work? Curl is working correctly, I can echo $result and get the page, but the preg_match_all isn't retrieving anything >_<

 

EDIT:

 

Changed title and moved topic to what's really being asked about.

 

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.