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.
function get_primkey($table) {
$result = mysql_list_fields($dbname,$table);
if (!$result) {
return false;
}
while ($field = mysql_fetch_field($result)) {
if ($field->primary_key) {
$pri_key = $field->name;
return $pri_key;
}
}
}