Jump to content

[SOLVED] just a quick question


HAVOCWIZARD

Recommended Posts

Please go through the entire records and check using an if

Example:

$result=mysql_query("your query");

while($data=mysql_fetch_array($result))

{

  if($data['arae'] == "YourArea")

        $array[] = $data['telephoneNumber'] ;

}

 

print_r($array) has the list telephone number in your area.

 

I think it is better to change the select query to select  the telephone number in your area.

Example:

SELECT * FROM table WHERE area="YourArea"

 

 

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.