WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Submit Site
Forex Trading Online forex trading platform

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : Function for retrieving MySQL enum values into a PHP array.
Categories : PHP, Databases, MySQL, Arrays Click here to Update Your Picture
Dave Silvia
Date : Nov 10th 2006
Grade : Be the 1st to grade this Code Example
Viewed : 4696
File : 4525.php
Images : No Images for this code example.
Search : More code by Dave Silvia
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

getEnumVals.php
<?php
/*
*  (c) 2006, D.E. Silvia, All rights reserved.
*  This code is available for use for non-commercial purposes.
*  Free to distribute as long as this copyright information remains intact.
*  No modification is authorized.  Please, refer bugs/enhancements to
*  dsilvia@mchsi.com
*
*/
/*
*
*  Function to return enum values from a MySQL database in a PHP array.
*  Values can then be easily displayed for user choices, i.e., in an
*  HTML form.
*
*  Arguments:
*     $host:       database host, e.g., 'localhost'
*     $user:       database user
*     $password:   database password for the user
*     $db:         database to connect
*     $table:      database table to access
*     $field:      name of the field (column) containing the enum
*     $sorted:     boolean for sorting. default: return the array sorted
*
*/

function getEnumVals($host,$user,$password,$db,$table,$field,$sorted=true)
{
   
$rp=mysql_connect($host,$user,$password);
   
$dbConnect=mysql_select_db($db);
   
$result=mysql_query('show columns from '.$table.';');
    while(
$tuple=mysql_fetch_assoc($result))
    {
        if(
$tuple['Field'] == $field)
        {
           
$types=$tuple['Type'];
           
$beginStr=strpos($types,"(")+1;
           
$endStr=strpos($types,")");
           
$types=substr($types,$beginStr,$endStr-$beginStr);
           
$types=str_replace("'","",$types);
           
$types=split(',',$types);
            if(
$sorted)
               
sort($types);
            break;
        }
    }
   
mysql_close($rp);
    return(
$types);
}
?>



How to load a query result into a PHP Array
Categories : PHP, Databases, Arrays, MySQL
dynamic table columns
Categories : PHP, HTML and PHP, Arrays, Databases, MySQL
This simple function will take a few arguments and easily set a associative array for each column in a result from a MySQL query
Categories : Databases, PHP, MySQL, Arrays
create a grid out of <INPUT TYPE=TEXT> then saving to a database. Uses a 'multi-dimension array', but not really as the array is just one big array with the index of "[$i][$j]". Have a look at the code and you'll see what I mean.
Categories : PHP, MySQL, Arrays, Databases
Sort the results from a SELECT query (any number of columns) into an array automatically.
Categories : PHP, PHP Classes, Arrays, Databases, MySQL
This program allows you to upload an ODBC ressource - i.e. an MS-Access database to a MySQL server.
Categories : Databases, MySQL, Complete Programs, PHP, Databases
Simple conversion functions to change MySQL dates to arrays, arrays to MySQL dates.
Categories : PHP, Arrays, Date Time, Databases, MySQL
bookmarker - PHP, PHPLIB, MySQL WWW based bookmark manager
Categories : MySQL, PHP, MySQL, Complete Programs, Databases
This functions makes it easy to use session-variables known from ASP. With one Cookie the array "session" will save and restore from a db-record. In this version MySQL is used but it's should very easy to change
Categories : PHP, Arrays, Cookies, MySQL, Databases
Finds the median in an array of numbers - Can be used with a MySql database column read into an array
Categories : PHP, Arrays, Databases, MySQL
Accepts a database & hostname from a user and then HTTP username and password. Uses this to connect to a MySQL database. Produces a form based on the tables it finds there to allow the user to do SELECTs, INSERTs, and DELETEs.
Categories : Databases, PHP, MySQL, Complete Programs
phpAds, a complete banner and ad management system with detailled tracking and stats.
Categories : MySQL, Complete Programs, Ecommerce, PHP, Databases
Point and Click Interface ala MS Access for creating SQL statements.
Categories : MySQL, Complete Programs, General SQL, PHP, Databases
Message of the Day - Random Message (Needs MySQL!)
Categories : Databases, HTML and PHP, PHP, MySQL
email new items in db
Categories : PHP, Email, Databases, MySQL, Beginner Guides