Databug is a PHP class that generates random profile data. It is useful for testing php scripts and applications.
Demo Script
require_once('path/to/profile.class.php');
$Databug = new DatabugProfile($debug=1);
$Databug->build_us_profile($state='*', $gender='*', $first_name='*', $last_name='*');
$PROFILE = $Databug->to_array();
print_r($PROFILE);