Thomas_Jung
Erfahrenes Mitglied
Hallo
Gibt es eine Möglichkeit das Array ($sql_columns_type) in die Reihenfolge von $find_fields zu sortieren?
Gruß Thomas
Gibt es eine Möglichkeit das Array ($sql_columns_type) in die Reihenfolge von $find_fields zu sortieren?
PHP:
$find_fields = 'benutzername type firma vorname name';
$find_fields_array = explode(" ", $find_fields);
$sql = "SHOW COLUMNS FROM `".$database."`.`".$db_prefix.$table."`";
$result_colums = mysql_query($sql,$conn);
check_mysql(__LINE__,__FILE__,$sql);
while ($columns = mysql_fetch_assoc($result_colums)){
$field = $columns["Field"];
if (in_array($field, $find_fields_array)) {
$sql_columns_type[] = $columns["Type"];
}
Gruß Thomas