0
列的總和創建圖像有人可以解釋如何用數字創造的形象,是我與這個查詢得到:與
$sumq = mysql_query("SELECT SUM(count) FROM downloads");
$row1=mysql_fetch_array($sumq);
列的總和創建圖像有人可以解釋如何用數字創造的形象,是我與這個查詢得到:與
$sumq = mysql_query("SELECT SUM(count) FROM downloads");
$row1=mysql_fetch_array($sumq);
您可以使用imagestring:
<?php
$text = 42; // whatever your number is
// Create a 100*30 image
$im = imagecreate(100, 30);
// White background and blue text
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 255);
// Write the string at the top left
imagestring($im, 5, 0, 0, $text, $textcolor);
// Output the image
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
謝謝!完成)http://irepo.ru/dl/count.php – nik1004 2013-03-17 20:22:21
供您選擇:HTTP ://nz1.php.net/manual/en/refs.utilspec.image.php – 2013-03-17 20:16:56
你可以解釋顯示圖像而不是text/html的動機嗎? – 2013-03-17 20:26:37
這是我大學在年底工作所需要的,在那裏我需要生成1列總數並在另一個網頁上顯示它,而不連接到數據庫 – nik1004 2013-03-17 20:33:06