Jump to content

Recommended Posts

Hello everyone,

 

I am fairly new to php and I seem to have run into a problem while writing a script.  The script is designed to pull data from profiles on myspace. The part of the script that I am writing now checks for certain keywords on the page. If the certain keywords exist, the user should not be able to add their profile to the page.

 

The problem I am running into is that I am using the while function and I believe I should be using something else. The reason for this is because there are 10 keywords I am checking for, so the script runs 10 times because I am using while.

 

Here is my code:

 

<?php

include('config.php');
$target_url = "http://www.example.com/1";
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
curl_setopt($ch, CURLOPT_URL,$target_url);
curl_setopt($ch, CURLOPT_FAILONERROR, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
$html = curl_exec($ch);


$select = mysql_query("SELECT * FROM newBan");
while($row = mysql_fetch_array($select)) {

if(preg_match("/".$key."/i", $html)) {

echo "<p>Sorry you cannot add this profile.</p>";

} else  {
     
 echo "The rest of the script continues.";		

}
}

?>

 

 

Is there a better method other than using while?

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/140317-i-need-help-with-my-script/
Share on other sites

I don't understand what you mean by adding all the keys into one strong. So I should still use the while function?

 

This is what I tried below, but the array only shows the last keyword in the list.

 

Please help.

 

<?php

include('config.php');
$target_url = "http://www.example.com/1";
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
curl_setopt($ch, CURLOPT_URL,$target_url);
curl_setopt($ch, CURLOPT_FAILONERROR, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
$html = curl_exec($ch);


$select = mysql_query("SELECT * FROM newBan");
while($row = mysql_fetch_assoc($select)) {

$key = array($row['keyword']);

$key1 = $key[0];
$key2 = $key[1];

}

echo "$key1<br /> $key2";

if(preg_match("/".$key."/i", $html)) {

echo "<p>Sorry you cannot add this profile.</p>";

} else  {
     
 echo "The rest of the script continues.";		

}


?>

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.