This project has a deadline.
Requirements:
Need the ability to search for domains gtld’s and cctld’s.
Using REST method’s I need to be able to enter 500 to 1000 names.
Return 2 results sets
(1) Return results in a grid that show the name and marks what
has been “taken” or “available”.
(2) Return also the registrant name for each registered domain
(if poosible)
Need a UI that that will allow a user to enter the domains
Provide the user search criteria (see attached images)
Display the results in a grid (see attached images).
The grid needs to be sortable.
The UI will provide the ability to export the data an excel file.
No sloppy coding
No frameworks
Just pure PHP coding using methods. Good PHP code should be structured. As much as possible, you should separate frontend HTML/CSS/JavaScript code from the backend logic.
Good user UI design is required
Documentation is required
List of all the whois servers should be in a text file. The program will read the text file to know what servers to search.
No tables in the html UI.
Test site for me to see a demo of the solution.
Project Objectives:
Deliver a really cool UI that will allow the user enter names and return the search results in a grid that is easy to use.
Project Deliverables:
HTML/CSS/JavaScript UI
Text file that contains all the whois servers (as many as you can find)
Source code (written in PHP)
Deployment instructions
If you have a better suggestion on how to collect ccTLD info via bulk request – let me know.
Bad PHP Coding:
1. <?
2. echo(“<p>Search results for query: ” .
3. $_GET[‘query’] . “.</p>”);
4. ?>
Good PHP Coding:
<?php
if (isset($_GET[‘query’]))
{
echo ‘<p>Search results for query: ‘,
htmlspecialchars($_GET[‘query’], ENT_QUOTES), ‘.</p>’;
}
?>
I want good code.
thx
