Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
+-------+--------------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------------------+------+-----+---------+----------------+
| id | tinyint unsigned | | PRI | NULL | auto_increment |
| fu | enum('No','Maybe','Yes') | | | No | |
+-------+--------------------------+------+-----+---------+----------------+
<?php
$dbh = mysql_connect ('localhost','test','test');
mysql_select_db ('test', $dbh);
$sql = "DESCRIBE foo fu";
$result = mysql_query ($sql, $dbh);
$array = mysql_fetch_assoc ($result);
$enum_array = split (',',(preg_replace ('/enum\(|\)/', '', $array['Type'])));
?>