我将结果按字母顺序排序?
需要它来读取目录并在mysql中按字母顺序添加文件...
$path = "artes110/$grupo";
$diretorio = opendir($path);
while ($arquivo = readdir($diretorio)){
if ($file != '.' && $file != '..')
{
$arquivo = utf8_encode($arquivo);
$arquivo = html_entity_decode($arquivo);
$query = mysql_query("INSERT INTO artes101 (imagem, data, texto, layout, grupo) VALUES ('$path/$arquivo', '$data2', '$texto', 'peq', '$grupo')") or die(mysql_error());
}
}
答案 0 :(得分:0)
在mysql中,您可以按任何顺序添加它们,然后通过在SQL代码中添加order by
子句来对它们进行排序。
SELECT * FROM artes101 ORDER BY imagem DESC;
您可以将imagen
更改为您希望他们排序的字段,并可以通过将DESC
更改为ASC