search
HomeBackend DevelopmentPHP TutorialComprehensive list of commonly used PHP codes (essential for beginners)_PHP tutorial
Comprehensive list of commonly used PHP codes (essential for beginners)_PHP tutorialJul 21, 2016 pm 03:36 PM
mysqlphpcodeEncyclopediaCommonly usedEssentialdatabaseBeginner's guideconnect

1. Connect the MYSQL database code
$connec=mysql_connect("localhost","root","root") or die("Cannot connect to the database server: ".mysql_error());
mysql_select_db("liuyanben",$connec) or die ("Cannot select database: ".mysql_error());
mysql_query("set names 'gbk'");
?>

2. Read the database and implement loop output
$sql="select * from liuyan order by ly_id desc";
$conn=mysql_query($sql,$connec) ;
while($rs=mysql_fetch_array($conn)){
?>
The content of the loop...
}
?>

3. How to implement paging, including two functions and two calls
1) Two functions

//Paging function
function genpage (&$sql,$page_size=2)
{
global $prepage,$nextpage,$pages,$sums; //out param
$page = $_GET["page"];
$eachpage = $page_size;
$pagesql = strstr($sql," from ");
$pagesql = "select count(*) as ids ".$pagesql;
$conn = mysql_query( $pagesql) or die(mysql_error());
if($rs = mysql_fetch_array($conn)) $sums = $rs[0];
$pages = ceil(($sums-0.5)/$ eachpage)-1;
$pages = $pages>=0?$pages:0;
$prepage = ($page>0)?$page-1:0;
$nextpage = ($ page$startpos = $page*$eachpage;
$sql .=" limit $startpos,$eachpage ";
}
/ / Show paging
function showpage()
{
global $page,$pages,$prepage,$nextpage,$queryString; //param from genpage function
$shownum =10/2;
$startpage = ($page>=$shownum)?$page-$shownum:0;
$endpage = ($page+$shownum
echo "Total".($pages+1)."Pages: ";
if($page>0)echo "Homepage a>";
if($startpage>0)
echo " ...
?";
for($i=$startpage;$i{
if($i==$ page) echo " [".($i+1)."] ";
else echo " ". ($i+1)." ";
}
if($endpageecho "? ... ";
if($pageecho "Last page";
}
//Show pagination with categories
function showpage1()
{
$fenlei =$_GET["fenleiid"];
global $page,$pages,$prepage,$nextpage,$queryString; //param from genpage function
$shownum =10/2;
$startpage = ($page>=$shownum)?$page-$shownum:0;
$endpage = ($page+$shownum
echo " Total ".($pages+1)." pages: ";
if($page>0)echo "Homepage ";
if($startpage>0)
echo " ... ?";
for($i=$startpage;$i{
if($i== $page) echo " [".($i+1)."] ";
else echo " ".($i+1)." ";
}
if($endpageecho "? ... ";
if($pageecho "Last page& amp; gt;";
}
?>
2) Two Call
First
$sql="select * from liuyan order by ly_id desc";
genpage($sql); //Just add this line to the normal code It’s OK.
$conn=mysql_query($sql,$connec);
while($rs=mysql_fetch_array($conn)){
?>
Second
}
?>
showpage(); //Show page
?>
mysql_close();
?>

4. The server side includes


5. How to write a record into the database, and then Prompt and jump to the page
$ly_title=$_POST["ly_title"];
$ly_content=$_POST["ly_content"];
$ly_time=$_POST[" ly_time"];
$ly_author=$_POST["ly_author"];
$ly_email=$_POST["ly_email"];
$sql="insert into liuyan(ly_title,ly_content,ly_time,ly_author ,ly_email) values('".$ly_title."','".$ly_content."','".$ly_time."','".$ly_author."','".$ly_email."') ";
mysql_query($sql,$connec);
echo("");
?>

6. A dialog box pops up and a page jump occurs
echo("");
?>

7. Information viewing Page (conditionally read database)
1) Conditionally read database
$sql="select * from liuyan where ly_id=$_GET[id]";
$ conn=mysql_query($sql,$connec);
$rs=mysql_fetch_array($conn);
?>
2) Output a field
=$rs[ly_title ]?>
3) Close the database
mysql_close();
?>

8. Update a record in the database and Make prompt jump
$ly_title=$_POST["ly_title"];
$ly_content=$_POST["ly_content"];
$ly_time=$_POST["ly_time "];
$ly_author=$_POST["ly_author"];
$ly_email=$_POST["ly_email"];
$sql="update liuyan set ly_title='$ly_title',ly_content= '$ly_content',ly_time='$ly_time',ly_author='$ly_author',ly_email='$ly_email' where ly_id=$_GET[id]";
mysql_query($sql,$connec);
echo("");
?>

9. How to delete a record in the database
$sql="delete from liuyan where ly_id=$_GET[id]";
mysql_query($sql,$connec);
echo("");
?>

10. How to log in as a member Verification
session_start();
$username=$_POST["username"];
$password=$_POST["password"];
$sql=" select * from admin where username='".$username."' && password='".$password."'";
$result=mysql_query($sql,$connec);
if($row =mysql_fetch_array($result)){
session_register("admin");
$admin=$username;
echo("");}
else
{
echo("& gt;");
}
mysql_close();
?>

11. How to check SESSION (production of background check page)
session_start();
if(!isset($_SESSION[" admin"])){
header("location:login.php");
exit;
}
?>

12. Verify that the username and password are filled in (javascript)


13. How to call the editor in PHP
1) Place the editor folder in the background management folder.
2) Use the following statements to perform the import operation.


Note: The name of the eWebEditorPHP38 editor folder.
The content in id=content is the name of the hidden field above

14. Loop output (can achieve column splitting)
1) First insert a row and a column table
$i=1;
?>



while($rs=mysql_fetch_array($conn)){
?>

if ($i % 2==0) {
echo "";
}
$i++;
}
?>

table>

15. Bind data to the drop-down list box (and select it by default when modifying)


16. Get character length function
strlen($c)>12

17. Definition A character interception function
Usage: =substrgb($rs["title"],10)?>
function substrgb($in,$num){
$pos=0;
$out="";
while($c=substr($in,$pos,1)){
if($c=="n") break;
if(ord( $c)>128){
$out.=$c;
$pos++;
$c=substr($in,$pos,1);

$out. =$c;
}else{
$out.=$c;
}
$pos++;
if($pos>=$num) break;
}
if($out!=$in) $out = $out . "...";
return $out;
}

18. Determine whether it is a number
!is_numeric (qq)

19. Obtaining the current date in PHP technology
$ptime=date("y-m-d");

20. PHP verification program used when user registration
if ($admin=="" or (strlen($admin)>16) or (strlen($admin)echo "";
}
if ( $password=="" or strlen($password)>16 or strlen($password)echo "";
}
if ($password=="") {
echo " ";
}else{
if ($password!=$password1) {
echo "";
}
}
if ($wt="") {
echo "< ;SCRIPT language=JavaScript>alert('Password question cannot be empty');";
echo "this.location.href='vbscript:history.back()';";
}
if ($da="") {
echo "";

}
if ($qq!="") {
if (!is_numeric($qq)) {
echo " ";
}
}
if ($youbian=="" or strlen($youbian)!=6) {
echo "";
}
if ($youbian!="") {
if (!is_numeric($youbian)) {
echo "";
}
}
if ($dizhi="") {
echo "";
}
if ($mail= ="") {
echo "";
}
if ($textarea=="") {
echo "";
}
if ($textarea=="" or strlen(textarea)>150) {
echo "";
}

24、对输出的内容进行判断,从而输出其它结果
if ($rs["active"]==1) {
echo "激活";
}else{
echo "禁用";
}
?>

25.字符截取函数
=substr("$rs[zixun_biaoti]",0,28)?>

26.男女问题或单选带选择的
>男
>女

27.单选不带单选框的

锁定
else{?>
解锁

它的 save页是

$hy_id=$_GET['id'];
$action=$_GET['action'];
if ($action=='yes'){
$sql="update hybiao set hy_zhuangtai='锁定' where hy_id='$id'";
$query=mysql_query($sql,$connec);
echo("");
}
else{
$sql="update hybiao set hy_zhuangtai='正常' where hy_id='$id'";
$query=mysql_query($sql,$connec);
echo("");
}
mysql_close();
?>

28. 如果文字过长,则将过长的部分变成省略号显示

就是比如有一行文字,很长,表格内一行显示不下.


29.
禁止复制,鼠标拖动选取

30.大 中 小 文字的变化

需要指定大小的文字


30.添加到收藏夹和设为首页
设为首页
收藏本站

31.记录并显示网页的最后修改时间


32.节日倒计时


33.打开窗口即最大化


34.加入背景音乐
只适用于IE
对Netscape ,IE 都适用

35.滚动

滚动信息


36.防止点击空链接时,页面往往重置到页首端
代码“javascript:void(null)”代替原来的“#”标记

37.不能点右键,不用CTRL+A,不能复制作!
onkeypress="window.event.returnValue=false"
onkeydown="window.event.returnValue=false"
onkeyup="window.event.returnValue=false"
ondragstart="window.event.returnValue=false"
onselectstart="event.returnValue=false">


37.随机变换背景图象(一个可以刷新心情的特效)


38.划过链接 手型鼠标
style="cursor:hand"

39.如何关闭层

关闭层

40.[关闭窗口]

41.凹陷文字背景为灰色


怎么样,我凹下去了吧?

你不想试试吗?

www.lenvo.cn



42.给表格做链接

Other tables and outputs to be looped






43.后退&关闭窗口
后退:javascript:history.back(1)
关闭:javascript:window.close();

44.如果文字过长,则将过长的部分变成省略号显示

就是比如有一行文字,很长,表格内一行显示不下.


45. Copying is prohibited, drag the mouse to select

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322138.htmlTechArticle1. Code to connect to MYSQL database?php $connec=mysql_connect("localhost","root","root" ) or die("Unable to connect to the database server: ".mysql_error()); mysql_select_db("liuyanben",$connec)...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version