0
votes
1answer
38 views

Lookup a specific IP address entered by form

I have a script that use api to get ip informations of an ip address. When a visitor enter it only shows the default informations about visitor ip, but I want to make a form so the visitor can lookup ...
1
vote
2answers
51 views

Make a lookup on an array literal in PHP

Making a lookup on an array is simple: $array = array(0 => 'Zero', 1 => 'One', 2 => 'Two'); $text = $array[2]; // $text = 'Two' But if I don't want the intermediate $array variable, is ...
-1
votes
1answer
84 views

Postcode / Page Finder using HTML / PHP

I need to create a simple postcode / page finder for a site where a user will enter their postcode and be redirected to a page based on whether or not that location is covered by the company. ...
-1
votes
1answer
56 views

How to lookup the value from one php associative array in another one without looping?

I have two PHP associative arrays that store user info and transactions respectively. They have values in common in one "column" (user email address, let's not get into whether that's a valid unique ...
-2
votes
1answer
99 views

IP to country using PHP - issue with code [closed]

I am trying to output an IP-to-country lookup using PHP. I am a complete beginner, so excuse my blunt mistakes! When I do the following, nothing happens! What am I doing wrong? <?php $country = ...
1
vote
2answers
91 views

Searching a CSV With PHP

I have a large CSV file. The first column contains the name of a processor. The second, the processor's benchmark score. EG: Intel Pentium Dual T3400 @ 2.16GHz,1322 Using a PHP script, I would ...
0
votes
2answers
46 views

Doing a second search automatically

I have PHP code to do a simple MySQL database search with only two columns of data. I suspect I am probably already going the long way around when I could simply do it a different way. I have a form ...
0
votes
2answers
234 views

Lookup a column value in recordset based on the value of another column

I have a MySQL SELECT query (using wpdb_custom->get_results()) that returns two UNSIGNED TINYINT columns Col_1 and Col_2 for an arbitrary number of rows. What is the least costly way in PHP to ...
5
votes
3answers
938 views

Enum vs Reference table vs Lookup class

While I'm designing a MySQL database for a dating website, I have come with the doubt of how to store the referenced data. Currently the database has 33 tables and there are nearly 32 different fields ...
1
vote
1answer
231 views

dns_get_record function fails to retrieve domain details

I'm trying to retrieve domain details of a domain I'm looking up which I purchased and pointed the nameservers to (which was done more than 72 hours ago). Now, when I'm using the dns_get_record ...
0
votes
3answers
120 views

Best implementation of web service with a huge list lookup

I am planning to offer a simple phrase lookup web service. the number of phrases is around 3-5 million entries, and each entry is less than 50 characters. The service is quite simple, if a phrase ...
5
votes
2answers
4k views

What is the best way to create a whois lookup? [closed]

I want add a domain registration in a website written with PHP. So I need a whois lookup service. What do I need to do? What's are its steps? Do I need a database, API or ... ? Help me please
2
votes
3answers
224 views

PHP hash key not found: what is the expected behavior?

I've heard that you get an error if you try to access a key in a hash that doesn't exist. However, I seem to just get an empty string, or a null value. Example: <?php $hash = array("abc" => ...
-1
votes
5answers
1k views

Finding full address from postcode, what is the solution?

Basically I am making an application form for my site. I need to search for a full address using the user input postcode and would like to offer the results of that postcode for them to choose. I am ...
0
votes
1answer
861 views

Find value between array values

I have a large array and would like to find between which array values the search value would appear. A simplified version of this array is as follows: [0] => Array ( [min] => 0 ...
1
vote
2answers
622 views

Neo4j Index Lookup using Neo4J-REST-PHP-API-client

I am unable to get the Index Lookup to work with the PHP API Client. First, am creating a node and am indexing it. This works fine. Then when I test the lookup curl -H Accept:application/json ...
0
votes
2answers
485 views

PHP code to present information from RIPE XML file

Here is a tool for WHOIS lookups that I use: http://apps.db.ripe.net/search/lookup.html It can present information in an XML file, like this: ...
2
votes
4answers
336 views

PHP String Evaluation Method

Hoping one of the great minds can help me here. I have a situation where I will receive an international phone number from a provider and I have to do a database lookup and figure out the country, ...
0
votes
1answer
564 views

How to find text in webpage through PHP?

I have a pure text file without any HTML formatting. I want to search for a word in it? how should i do that? and I also want the next words before a comma. can i do that to? so means: if its: ...
2
votes
1answer
220 views

Name-matching against table with alternative spellings

I have a table with alternative spellings of country names: Use name, Alt1, Alt2, Alt3, Alt4 [...] Bahamas, "Bahamas, The" Bolivia Bosnia and Herzegovina, Bosnia & Herzegovina [...] (Some ...
0
votes
2answers
1k views

A lookup table, Store in MySQL or PHP

I have a question regarding to the performance between a lookup table store in MySQL(standalone table) or PHP(array), so here is my data (in array form) $users = array( array(name => 'a', address ...
1
vote
5answers
2k views

PHP - How can I lookup the Zip Code using the City & State

I need to lookup the Zip Code for a list of addresses (which include the city/state). Is there a master zip code list for download (that is free) or are there any web services that will return the ...
0
votes
3answers
492 views

Algorithm to look up the date range based on event date

I'm writing a PHP function that would use a table of sorts to look up which DB shard the application should go to, based on the datestamp I have. The shard configuration is something like this ...
2
votes
3answers
263 views

How to lookup a url on a page

I'm new to Regular Expressions and things like that. I have only few knowledge and I think my current problem is about them. I have a webpage, that contains text. I want to get links from the webpage ...