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.
<?php
$link = mysql_connect ("localhost", "test", "test");
mysql_select_db ("test", $link);
$query = "show columns from foo like 'enumval'";
$result = mysql_query ($query, $link);
$vals = mysql_fetch_object ($result);
$enums = preg_split ("/,/", preg_replace ("/enum|\)|\(/", "", $vals->Type));
print_r ($enums);
?>