Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/267.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 预计起飞时间。 $regions=array( 1=>'North West', 2=>'North East', 3=>'South West', 4=>'South East', ); crea_Php_Mysql - Fatal编程技术网

Php 预计起飞时间。 $regions=array( 1=>'North West', 2=>'North East', 3=>'South West', 4=>'South East', ); crea

Php 预计起飞时间。 $regions=array( 1=>'North West', 2=>'North East', 3=>'South West', 4=>'South East', ); crea,php,mysql,Php,Mysql,预计起飞时间。 $regions=array( 1=>'North West', 2=>'North East', 3=>'South West', 4=>'South East', ); create table regions { id int primary key, name varchar(255) not null, sortorder int not null }; id name sor

预计起飞时间。
$regions=array(
    1=>'North West',
    2=>'North East',
    3=>'South West',
    4=>'South East',
);
create table regions {
  id int primary key,
  name varchar(255) not null,
  sortorder int not null
};
id    name         sortorder
1     North West   3
2     North East   1
3     South West   4
4     South East   2
SELECT * FROM your_table ORDER BY sort_order;