這樣寫怎么不能結束啊??
$sql = <<<EOF
create table if not exists mysqli(
id tinyint unsigned primary key auto_increment,
username varchar(20) not null
);
EOF;
$sql = <<<EOF
create table if not exists mysqli(
id tinyint unsigned primary key auto_increment,
username varchar(20) not null
);
EOF;
2017-03-06
舉報
2017-03-07
你的MySQL語句書寫正確,創建了一個mysqli表,
表結構:
你說的結束是這樣嗎?示例代碼: