Dobrý den,
vize je taková:
aktivní uživatel má 1
čekající má 2
nepřítomen má 3
řadí se to podle toho kdy byl uživatel přidán,(takže uživatel 1 se přepne na 2, a po přepnutí na 1 se zařadí zpět na stejné místo k 1 kdy byl předtím) ale já bych potřeboval aby se to řadilo podle toho kdy uživatel má 1 a když se přepne na 2 a pak znovu na 1 tak aby se zařadil na poslední místo u uživatelů 1.
potřeboval bych pomoct s tím to kódem bohužel tomu nerozumím snad je to tento kód :
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
?>
<?php
$i=0;
mysql_select_db($database_sender, $sender);
$query_rec = "SELECT * FROM p_users WHERE aktivni=1 order by status ";
$rec = mysql_query($query_rec, $sender) or die(mysql_error());
$totalRows_rec = mysql_num_rows($rec);
while($row_rec = mysql_fetch_assoc($rec)) {?>