php對列
㈠ php一行顯示多列
$res=mysql_query($sql);//取得結果
$i==0;
while($row=mysql_fetch_array($res))
$i++;
if($i%3==0) { echo "<br>";
echo "<td><a href='information.php?id=$row[id]'><img class='php_img' src='admin/tupian/$row[tupian]'/></a><br><p class='php_p'>設計名稱: <font class=' php_font'><a href='information.php?id=$row[id]'>$row[name]</a></font> </p>
<p class='php_p'>設計品牌: <font class='php_font'>mumu</font> </p>
<p class='php_p'>貨號: <font class='php_font' php_font>045810</font> </p>
<p class='php_p'>材質:
<label class='php_label'>木頭</label>
規格:
<label class='php_label'>60*45*15</label>
</p></td>";
}
?>
給你講講思路,你可以先在while循環外面加一個變數定義一個數字,然後再再while循環內部依次加1;當這個變數是三的倍數的時候,你就可以給他換行了,至於是td換行,還是br換行,或者是什麼其他方式換行,你就可以隨便了
㈡ php 5.4 如何讀取excel中的列名跟值,導入到資料庫中形成「列1,值1,列2,值2......」這種樣式
下載PHPExcel後保存到自己的類文件目錄中,然後使用以下代碼可以打開Excel 2007(xlsx)格式的文件:
require_once'/libs/PHPExcel-1.8.0/Classes/PHPExcel.php';//修改為自己的目錄
echo'<p>TESTPHPExcel1.8.0:readxlsxfile</p>';
$objReader=PHPExcel_IOFactory::createReaderForFile($filename);
$objPHPExcel=$objReader->load($filename);
$objPHPExcel->setActiveSheetIndex(1);
$date=$objPHPExcel->getActiveSheet()->getCell('A16')->getValue();
讀出以後再根據內容寫入資料庫
㈢ php從資料庫中讀取數據實現頁面一行三列排列,求代碼
<?php
$sql="select * from vs_court order by id desc limit 3";
$query=mysql_query($sql);
echo "<table><tr><th>第一列</th><th>第二列</th><th>第三列</th></tr>";
while($array=mysql_fetch_array($query)){
?>
<tr>
<td height="120"><img src="<?php echo $row["thunbnail"]?>" /></td>
<td height="20" align="center" class="ty-qtitle"><?php echo $array["tag"];?></td>
<td height="20" align="center" class="ty-qtitle">第三列值<td>
</tr>
</table> <?php } ?>
㈣ PHP怎樣給table里的列賦值
在兩個td中間寫<? echo $aaa?>
㈤ php 數組一列求和,,,,,,,,,
例子-
<?php
$a=array(0=>"5",1=>"15",2=>"25");
echo array_sum($a);
?>
例子而
<?php
$a=array(0=>"5",1=>"15",2=>"25");
$total = 0;
foreach($a as $num){
$total+=$num;
}
?>
㈥ PHP中如何輸出資料庫特定行列的內容 如圖
前提通過php,連接資料庫,你先用sql語句進行一下篩選,比如select x,y,z from list(表名) where id=2;
然後通過 mysql_query()執行一下,在通過row=mysql_fetch_row()依次寫出row[0],row[1]...就好了
㈦ php中已經查詢到某欄位的列值,如何將所有列值存入數組中
while($row=mysql_fetch_array($result)){
$rows[]=$row[欄位];
}
㈧ 如何用php取出資料庫表中一列所有數據
很簡單,用循環,你那樣用只能有一條記錄,建議多看看php手冊,對自己有好處
while ($result= mysql_fetch_array($result, MYSQL_NUM)) {
print_r($result);
}
㈨ php mysql 中如何將一條數據所有欄位相加(列相加)
$arr=array("a"=>1,"b"=>2,"c"=>3,"d"=>4);
foreach($arras$val){
$str+=$val;
}
echo$str;
如果是值是數字的化應該是這樣吧!