給初學PHP的5個入手程式

來源:互聯網
上載者:User

php的基本文法格式與C類似,沒學過C的朋友花幾分鐘看看別人的原始碼怎麼寫的,就基本熟悉格式了。
----------------------------------------------------
下面進入正題
準備了5個程式:
1.使用一個基本的函數,其結果是字串形式,用echo顯示出來
2.顯示一個漂亮的表格
3.一個表單例子,提交並顯示提交結果
4.資料庫操縱例子(投票程式)
5.動態建立圖形並儲存例子
----------------------------------------------------
#程式1:
/* 功能:顯示PHP極其APACHE的配置環境和各種參數變數*/
<?php
echo phpinfo();/* php有豐富的函數庫,大量便捷的函數極大的提高你的工作效率。phpinfo()就是其中一個函數*/
?>
----------------------------------------------------
#程式2:
/* 功能:顯示一個漂亮的表格
<HTML>
<HEAD>
<TITLE>一個漂亮的表格</TITLE>
</HEAD>
<BODY>
<?
function useColor()
{
/*
** 請牢記我們最後使用過的顏色標記
*/
static $ColorValue;
/* 選擇下一個顏色 */
if($ColorValue == "#00FF00")
{
$ColorValue = "#CCFFCC";
}
else
{
$ColorValue = "#00FF00";
}
return($ColorValue);
}
print "<TABLE WIDTH="100%"> ";
for($count=0; $count > 6; $count++)
{
/*
** 取得當前行的顏色
*/
$RowColor = useColor();
/*
** 把背景顏色用HTML語言
** 輸出到表格單元
*/
print "<TR><TD BGCOLOR='$RowColor'>";
print "<FONT SIZE=2><CENTER>行數 $count</CENTER></FONT></TD></TR> ";
}
print "</TABLE> ";
?>
</body>
</html>
----------------------------------------------------
#例子3
<?
if($send)
{
echo "發送結果:$send";
exit;
}
?>
<html>
<title></title>
<body>
<form action=<?echo $PHP_SELF?> method=post>
<input type=text name=send value="輸入值">
<input type=submit>
<input type=reset>
</form>
</body>
</html>
----------------------------------------------------
#例子4 :投票程式
在這裡:http://www.21php.com/forums/showthread.php?s=&threadid=524
#例子5: 動態建立並儲存圖形
<?//必須有GD庫支援
Header("Content-type:image/jpeg");
$im=imagecreate(400,30);
$black=ImageColorAllocate($im,0,0,0);
$white=ImageColorAllocate($im,255,255,255);
ImageTTFText($im,20,0,10,20,$white,"c:windowsfontsRaavi.ttf","i am kinter");
ImageJpeg($im,"hello.jpeg");
ImageDestroy($im);
?>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.