Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
/* Welcher Datensatz soll an den Anfang */
$id = 65;
/*******************************/
$qry = mysql_query("SELECT * FROM table") or die(mysql_error());
$anzahl = mysql_num_rows($qry) + 1;
mysql_query("UPDATE table SET id = {$anzahl} WHERE id = 1") or die(mysql_error());
mysql_query("Update table SET id = 1 WHERE id = {$id}") or die(mysql_error());
mysql_query("Update table SET id = {$id} WHERE id = {$anzahl}") or die(mysql_error());