<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>PHPRO Articles</title>
    <link>http://www.phpro.org/feed.php</link>
    <description>PHP Articles from PHPRO</description>
    <pubDate>Fri, 25 Apr 2008 12:58:24 +0000</pubDate>
    <generator>eZ Components Feed dev (http://ezcomponents.org/docs/tutorials/Feed)</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <item>
      <title>Create Columns From Array</title>
      <link>http://www.phpro.org/examples/Create-Columns-From-Array.html</link>
      <description>Creating columns from an array or from a database result set can seem a little tricky. The key to making it happen is the PHP modulo operator. With some simple math, database result sets and arrays can be rendered in two, three, four or more columns.</description>
    </item>
    <item>
      <title>Convert Seconds To Words</title>
      <link>http://www.phpro.org/examples/Convert-Seconds-To-Words.html</link>
      <description>This function takes a UNIX TIMESTAMP as generated by strtotime or from any source and converts it into a human readable notation. Convert seconds to words is a function that should be done at the application level and not from from SQL queries as this may interfere with display logic.</description>
    </item>
    <item>
      <title>Create-Test-Database</title>
      <link>http://www.phpro.org/examples/Create-Test-Database.html</link>
      <description>Here is a small but useful script to create test data for databases. Two test tables are created with PDO and filled with various data types including Binary (BLOB) data.</description>
    </item>
    <item>
      <title>80000 Word List</title>
      <link>http://www.phpro.org/examples/80000-Word-List.html</link>
      <description>Some times you just need a list of words, a big list. Here is a list of  about eighty thousand words to help with.. well whatever!</description>
    </item>
    <item>
      <title>Radians To Degrees</title>
      <link>http://www.phpro.org/examples/Radians-To-Degrees.html</link>
      <description>This function complements the Degrees to Radians functions by doing exactly the opposite, converting radians to degrees. Handy for those geographical calculations need when plotting points on a map with with online applications such as google maps or yahoo maps.</description>
    </item>
    <item>
      <title>Degrees To Radians</title>
      <link>http://www.phpro.org/examples/Degrees-To-Radians.html</link>
      <description>Here is a handy function for those messing with goe location and geo targetting or other geo graphical toys. This function convert degrees to radians for use in map plotting etc.</description>
    </item>
    <item>
      <title>Get Riemann Distance</title>
      <link>http://www.phpro.org/examples/Get-Riemann-Distance.html</link>
      <description>This function will calculate the distance between two points on the earth using the great circle distance formulae. This function should not be used to calculate linear distances, instead use the GetLinearDistance function. This function will return a value in miles, nautical miles or kilometers</description>
    </item>
    <item>
      <title>Get Linear Distance</title>
      <link>http://www.phpro.org/examples/Get-Linear-Distance.html</link>
      <description>This function calculates the linear distance between two points. Give to x1 y1 x2 and y2. This is not a function for calculating distances between latitudes and longitutes, for that purpose see the Get Riemann Distance function.</description>
    </item>
    <item>
      <title>US Cities Zip Codes</title>
      <link>http://www.phpro.org/examples/US-Cities-Zip-Codes.html</link>
      <description>Ever needed a comprehensive list of US cities, zip codes, latitude and longitude?&#13;
Well you can pay up to $100 dollars for one or you can use this database of over forty one thousand (41000) cities and their locations. Great for geo targetting and geo location in your next application.</description>
    </item>
    <item>
      <title>Get Full URL</title>
      <link>http://www.phpro.org/examples/Get-Full-URL.html</link>
      <description>A PHP function to get the full url of a web page. This function gathers several of the PHP super globals to create the whole URL.</description>
    </item>
    <item>
      <title>Get Link Text</title>
      <link>http://www.phpro.org/examples/Get-Link-Text.html</link>
      <description>Ever wanted to get the text component of a URL. Not the link destination but the link itself. Well you search is over because the work has been done for you.</description>
    </item>
    <item>
      <title>Calculate How Many Years Old</title>
      <link>http://www.phpro.org/examples/Calculate-How-Many-Years-Old.html</link>
      <description>This function will work out how many years old you are based on a date provided in any format that is readable by strtotime. The function itself returns an integer of how many year old minus months day etc.</description>
    </item>
    <item>
      <title>Convert BMP to JPG</title>
      <link>http://www.phpro.org/examples/Convert-BMP-to-JPG.html</link>
      <description>The PHP GD library lacks the ability to convert BMP images to JPG. This can be achieved with the Imagick extension but for those folks with only GD at their disposal, this function will get you through the day.</description>
    </item>
    <item>
      <title>Convert Unix Timestamp To MySQL Timestamp</title>
      <link>http://www.phpro.org/examples/Convert-Unix-Timestamp-To-MySQL-Timestamp.html</link>
      <description>Here is a quick but useful function to convert PHP time to MySQL times. That is, UNIX TIMESTAMP to MySQL TIMESTAMP format. Handy for all those times you need to deal with changing date formats.</description>
    </item>
    <item>
      <title>Create Horizontal Gradient With PHP Imagick</title>
      <link>http://www.phpro.org/examples/Create-Horizontal-Gradient-With-PHP-Imagick.html</link>
      <description>The PHP Imagick extension allows for the creation of gradients. By default these gradients are vertical. This example code provides a method of creating horizontal gradients using simple rotation.</description>
    </item>
    <item>
      <title>Password Strength Tester</title>
      <link>http://www.phpro.org/examples/Password-Strength-Tester.html</link>
      <description>PHP Security is an important part of creating forms. Recently there has been a proliferation of password strength testing scripts about, each with their own algorithms for checking the strength of passwords. This example shows how it is done.</description>
    </item>
    <item>
      <title>Twenty Four Hour to Twelve Hour</title>
      <link>http://www.phpro.org/examples/Twenty-Four-Hour-to-Twelve-Hour.html</link>
      <description>Converting 24 hour time to 12 hour can be a hassle when you have different formats. This helper function takes 24 hour times and converts them to its 12 hour counterpart. Fun for all ages.</description>
    </item>
    <item>
      <title>58000 Words</title>
      <link>http://www.phpro.org/examples/58000-Words.html</link>
      <description>58000 Words is a MySQL table containing just what it says, over 58000 words in a MySQL dump so you can stick it directly into your database for use in your applications. Great for any time you need a word list to match against.</description>
    </item>
    <item>
      <title>Directory-Size</title>
      <link>http://www.phpro.org/examples/Directory-Size.html</link>
      <description>When you need to get the size of an entire directory using PHP this function will give you result in Bytes. You can then do the math to format it into KB or MB or whatever format you like.',</description>
    </item>
    <item>
      <title>PDO to Array</title>
      <link>http://www.phpro.org/examples/PDO-to-Array.html</link>
      <description>Here is a small utility function that takes the result of a PDO query using a key value pair and creates a single dimensional array from it.</description>
    </item>
  </channel>
</rss>
