此代码不起作用我想为每 10 条记录打印文件。
if($con=mysqli_connect("localhost","root","","fileDemo")){
//echo "DB CONEECTED";
$sql = "select id from news order by id desc";
$data_query=mysqli_query($con,$sql);
while($data=mysqli_fetch_assoc($data_query)){
$id=$data['id'];
if(!file_exists("demo_file"."-".trim($id).".txt")){
$file_c=fopen("demo_file"."-".trim($id).".txt", 'a');
fwrite($file_c,$id);
fclose($file_c);
}
// $stringData.="Name: ".$data['name']." Age:".$data['age']."\n";
}
}else{
echo "CONNECTION FAILD";
}
芜湖不芜