时间:2021-07-01 10:21:17 帮助过:5人阅读
PHP浠g爜:
if ($data[$i][nickname])
{
$nickname = $data[$i][nickname];
}
else
{
$nickname = $data[$i][ip];
}
鍙互鍐欐垚:
PHP浠g爜:
$nickname = $data[$i][nickname] ? $data[$i][nickname] : $data[$i][ip];
3.鍠勪簬缁勭粐if...else...鍥炲湀
姣斿:
PHP浠g爜:
$ext_name = strtolower(str_replace(".", "", strrchr($upfilename, ".")));
if (!empty($type))
{
if (!strpos($type, $ext_name))
{
echo "Please upload the file of $type form.";
exit();
}
}
涓婇潰鐨勪唬鐮佷綘搴旇鍐欐垚杩欐牱:
PHP浠g爜:
$ext_name = strtolower(str_replace(".", "", strrchr($upfilename, ".")));
if (!($type===) && strpos($type, $ext_name)===false)
{
echo "Please upload the file of $type form.";
exit();
}
4.灏介噺璁╀綘鐨勪唬鐮佹竻娣呬簺
濡傛灉鍐欐垚杩欐牱锛屾槸姣旇緝璁╀汉澶寸棝鐨?
PHP浠g爜:
$foo=$_post["foo"];
$username=$_post["user"];
$group=$_POST["group"];
if ($group=="wheel"){
$username=$username."wheel";
}
鍚屾牱鐨勪唬鐮侊紝杩欐牱灏辨瘮杈冭浜虹湅寰楄垝鏈嶄簡:
PHP浠g爜:
$foo = $_post["foo"];
$username = $_post["username"];
$group = $_POST["group"];
if ($group=="wheel")
{
$username = $username."wheel";
}
褰撶劧锛屾湁涓€瀹氬熀纭€鍚庯紝浣犲簲璇ヨ鍐欐垚杩欐牱:
PHP浠g爜:
$foo = &$_POST[foo];
$username = $_POST["group"]!=wheel ? $_POST["username"] : $_POST["username"].wheel;
5.缂栧啓瑙勮寖鐨刴ysql 璇彞銆?BR>瀛楁鍜岃〃鍚嶇敤"`"寮曡捣鏉ワ紝閬垮厤淇濈暀瀛楃殑褰卞搷銆?BR>濡傛灉鐪嬪埌涓嬮潰杩欐牱鐨勪竴涓猻ql query锛屼細璁╀汉姣旇緝澶寸棝:
PHP浠g爜:
$query="select `flash_comment`.`content` , `flash_comment`.`nickname` , `flash_comment`.`date` , `flash_comment`.`ip` , `product`.`p_name` , `sgflash`.`fid` from `flash_comment` left join `product` on ( `flash_comment`.`p_no` = `product`.`p_no` ) left join `sgflash` on ( `product`.`p_name` = `sgflash`.`f_name` ) where `flash_comment`.`p_no` != order by `flash_comment`.`date`";
鍚屾牱鐨勪竴涓猶uery,鍐欐垚杩欐牱灏变护浜虹湅寰楁槑鐧藉緱澶氫簡:
PHP浠g爜:
$query = "SELECT `flash_comment`.`content` , `flash_comment`.`nickname` , `flash_comment`.`date` , `flash_comment`.`ip` , `product`.`p_name` , `sgflash`.`fid`
FROM `flash_comment`
LEFT JOIN `product` ON ( `flash_comment`.`p_no` = `product`.`p_no` )
LEFT JOIN `sgflash` ON ( `product`.`p_name` = `sgflash`.`f_name` )
WHERE `flash_comment`.`p_no` !=
ORDER BY `flash_comment`.`date`";
http://www.bkjia.com/PHPjc/532436.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/532436.htmlTechArticle涓€. 10鍙ヨ瘽 1.涓嶈渚濊禆register_global=ON鐨勭幆澧冿紝浠庝綘鍒氭噦寰楅厤缃畃hp杩愯鐜鐢氳嚦灏氫笉鏄庣櫧register_global鐨凮N/OFF浼氬鑷繁鏈変粈涔堝奖鍝嶇殑閭eぉ璧凤紝灏卞簲...