0
<?php
include '../connection.php';
$sql="SELECT userid,name,batch FROM dbusers";
$results=mysql_query($sql) or die("Cannot execute query");
$count=mysql_num_rows($results);
$arr=array();
for($i=0; $i < $count; $i++){
$rows=mysql_fetch_array($results);
//What to put here ?
}
json_encode($arr);
?>
這是我的php代碼。我想問一下在for循環中放什麼,這樣我就可以在php中創建一個數組數組。內部數組將具有用戶標識,名稱和批處理作爲其元素。在for循環中創建Json數組 - php
Thanx它的工作..你們在StackOverflow是真的有用像我這樣的兒童開發.. .. – omerjerk
你真棒@穆薩 – mahmud