Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

AnyExamples.com:
PHP Whois Client Function
Sep 19, 2007 @ 13:43:00

On the AnyExamples.com website, there's a new little how to on making a whois client in PHP (without just using an exec or similar call to the filesystem).

This article contains PHP implementation of whois client (as a function ae_whois), which may be used to request domain information from specified whois servers.

Their method uses the socket functionality (fsockopen, fwrite, fclose) to make a connection to the remote server for the specified domain's information.

tagged: whois client function socket fsockopen fwrite fclose whois client function socket fsockopen fwrite fclose

Link:

AnyExamples.com:
PHP Whois Client Function
Sep 19, 2007 @ 13:43:00

On the AnyExamples.com website, there's a new little how to on making a whois client in PHP (without just using an exec or similar call to the filesystem).

This article contains PHP implementation of whois client (as a function ae_whois), which may be used to request domain information from specified whois servers.

Their method uses the socket functionality (fsockopen, fwrite, fclose) to make a connection to the remote server for the specified domain's information.

tagged: whois client function socket fsockopen fwrite fclose whois client function socket fsockopen fwrite fclose

Link:

DevShed:
Creating an RSS Reader Application
Feb 21, 2007 @ 15:02:00

In this new tutorial from DevShed (in their "RSS Reader" series), they finally get down to the real heart of the application - the code.

The other other two parts prepared you for this, the creation of the actual RSS file - correctly formatted and filled with data. They also include a simple feed reader so you can ensure your document can be read correctly.

Unfortunately, they chose to go with a long line of fwrites to push out each line of the file instead of pushing it all into one string and writing that. Using the multiples makes more work for the file handling and could result in a slowdown for a large amount of items in the RSS file.

tagged: create tutorial rss reader application output fwrite create tutorial rss reader application output fwrite

Link:

DevShed:
Creating an RSS Reader Application
Feb 21, 2007 @ 15:02:00

In this new tutorial from DevShed (in their "RSS Reader" series), they finally get down to the real heart of the application - the code.

The other other two parts prepared you for this, the creation of the actual RSS file - correctly formatted and filled with data. They also include a simple feed reader so you can ensure your document can be read correctly.

Unfortunately, they chose to go with a long line of fwrites to push out each line of the file instead of pushing it all into one string and writing that. Using the multiples makes more work for the file handling and could result in a slowdown for a large amount of items in the RSS file.

tagged: create tutorial rss reader application output fwrite create tutorial rss reader application output fwrite

Link:


Trending Topics: