当前位置: 编程技术>php
本页文章导读:
▪层叠菜单的动态生成
<HTML><BODY BGCOLOR=FFFFFF> <FORM ACTION="/blog_article/</php echo $PATH_INFO/gt;.html" METHOD=POST> <?php if (isset($hierarchy)){ //$hierarchy[] = $selection; if (isset($hierarchy)){ while(list($lev.........
▪多数据表共用一个页的新闻发布
本文为了简单并能够说明主要内容,一些次要的html内容相对简单。 在网站有多个内容要在某一页显示时可在网页中共用一个显示和提交。 本例中有两个数据表(news,ctm);一个主页(index.php);.........
▪PHP与MySQL交互使用详解
PHP与MySQL交互使用详解 1、创建自动连接数据库的代码,并生成一些必要的代码.我们仔细研究一下数据库的连接函数,会发现是这样的一行代码。 $link_id=@mysql_connect($hostname,$username,$password); 所.........
[1]层叠菜单的动态生成
来源: 互联网 发布时间: 2013-11-30
<HTML><BODY BGCOLOR=FFFFFF>
<FORM ACTION="/blog_article/</php echo $PATH_INFO/gt;.html" METHOD=POST>
<?php
if (isset($hierarchy)){
//$hierarchy[] = $selection;
if (isset($hierarchy)){
while(list($level, $sel) = each($hierarchy)){
echo "<INPUT TYPE=HIDDEN NAME=hierarchy[$level] VALUE=$sel>";
echo $level, ': ', $sel, "<BR>n";
$nextlevel = (int) $level + 1;
}
}
}
else{
$nextlevel = 0;
}
echo "<SELECT NAME=hierarchy[", $nextlevel, "]>n";
for ($I = 1; $I <= 10; $I++){
echo "<OPTION VALUE=$I>$I</OPTION>n";
}
echo "</SELECT>n";
?>
<INPUT TYPE=SUBMIT>
</FORM>
</BODY></HTML>
<FORM ACTION="/blog_article/</php echo $PATH_INFO/gt;.html" METHOD=POST>
<?php
if (isset($hierarchy)){
//$hierarchy[] = $selection;
if (isset($hierarchy)){
while(list($level, $sel) = each($hierarchy)){
echo "<INPUT TYPE=HIDDEN NAME=hierarchy[$level] VALUE=$sel>";
echo $level, ': ', $sel, "<BR>n";
$nextlevel = (int) $level + 1;
}
}
}
else{
$nextlevel = 0;
}
echo "<SELECT NAME=hierarchy[", $nextlevel, "]>n";
for ($I = 1; $I <= 10; $I++){
echo "<OPTION VALUE=$I>$I</OPTION>n";
}
echo "</SELECT>n";
?>
<INPUT TYPE=SUBMIT>
</FORM>
</BODY></HTML>
[2]多数据表共用一个页的新闻发布
来源: 互联网 发布时间: 2013-11-30
本文为了简单并能够说明主要内容,一些次要的html内容相对简单。
在网站有多个内容要在某一页显示时可在网页中共用一个显示和提交。
本例中有两个数据表(news,ctm);一个主页(index.php);
一个提交页(index_pub.php;和一个包函页(index_view.php)
一个子页(view_d.php)。
----news,ctm---
increate table news(id int(80) not null auto_increment,title char(100),detail text,primay key(id));
increate table ctm(id int(80) not null auto_increment,title char(100),detail text,primay key(id));
----index_view.php---
<?ph
$query="select * from ".$name." order by id desc limit 0,5;
$result=mysql_query($query,$db);
if ($result){
while($myrow=msyql_fetch_array($result)){
?>
<tr><td><a href="/blog_article/view_d/recod/lt;php echo $myrow[id]; /gt;/amp;name/lt;php echo $name; /gt;.html">$myrow[title]</a></td></tr>
<?php
}
}
else{
echo "这里还没新的内容。";}
?>
----index.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<hr size=0 color=green width=100%>
<p align=left><font color=green size=+3>Yourname Online</font></p>
<hr size=3 color=green width=100%>
<p align=left><font size=-1>你现在的位置-->首页</font></p>
<hr size=2 color=green width=100%>
<table width=100 border=0 cellpadding=0 cellspacing=0>
<tr>
<!-- news -->
<td width=50% align=left>
<table width=100 border=0 cellpadding=0 cellspacing=0>
<?php
$name=news;
include("index_view.php");
?>
</table>
</td>
<!-- ctm -->
<td width=50% align=left>
<table width=100 border=0 cellpadding=0 cellspacing=0>
<?php
$name=ctm;
include("index_view.php");
?>
</table>
</td>
</tr>
</table>
<hr size=0 width=100% color=green>
<p align=center><font size=-1>Copyrignt 1999…</font></P>
</body>
</html>
----index_pub.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<form action=index_view.php method=post>
<p>请选择数据库:<br>
<select name=db_name size=1>
<option value=news>news</option>
<option value=ctm>ctm</option>
</select></p>
<p>标题:<br>
<input type=text name=title size=20></p>
<p>内容:<br>
<textarea rows=6 cols=10 name=detail></textarea></p>
<p><input type=submit value=submit></p>
</form>
<?php
switch ($db_name){
case news:$name=news;
break;
case ctm:$name=ctm;
break;
}
$query="insert into ".$name."(title,detail) values('$title','$detail');
$result=mysql_query($query,$db);
if ($result){echo "ok";}
else{echo "failed";}
?>
</body>
</html>
----view_d.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<?php
if ($recod){
$query="select * from ".$name." where id=".$recod;
$result=mysql_query($query,$db);
$title=mysql_result($result,0,title);
$detail=mysql_result($result,0,detail);
echo "<p>标题:".$title."</p>";
echo "<p>内容:".$detail."</p>";
}
else{echo "此文件已被删除!";}
</body>
</html>
在网站有多个内容要在某一页显示时可在网页中共用一个显示和提交。
本例中有两个数据表(news,ctm);一个主页(index.php);
一个提交页(index_pub.php;和一个包函页(index_view.php)
一个子页(view_d.php)。
----news,ctm---
increate table news(id int(80) not null auto_increment,title char(100),detail text,primay key(id));
increate table ctm(id int(80) not null auto_increment,title char(100),detail text,primay key(id));
----index_view.php---
<?ph
$query="select * from ".$name." order by id desc limit 0,5;
$result=mysql_query($query,$db);
if ($result){
while($myrow=msyql_fetch_array($result)){
?>
<tr><td><a href="/blog_article/view_d/recod/lt;php echo $myrow[id]; /gt;/amp;name/lt;php echo $name; /gt;.html">$myrow[title]</a></td></tr>
<?php
}
}
else{
echo "这里还没新的内容。";}
?>
----index.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<hr size=0 color=green width=100%>
<p align=left><font color=green size=+3>Yourname Online</font></p>
<hr size=3 color=green width=100%>
<p align=left><font size=-1>你现在的位置-->首页</font></p>
<hr size=2 color=green width=100%>
<table width=100 border=0 cellpadding=0 cellspacing=0>
<tr>
<!-- news -->
<td width=50% align=left>
<table width=100 border=0 cellpadding=0 cellspacing=0>
<?php
$name=news;
include("index_view.php");
?>
</table>
</td>
<!-- ctm -->
<td width=50% align=left>
<table width=100 border=0 cellpadding=0 cellspacing=0>
<?php
$name=ctm;
include("index_view.php");
?>
</table>
</td>
</tr>
</table>
<hr size=0 width=100% color=green>
<p align=center><font size=-1>Copyrignt 1999…</font></P>
</body>
</html>
----index_pub.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<form action=index_view.php method=post>
<p>请选择数据库:<br>
<select name=db_name size=1>
<option value=news>news</option>
<option value=ctm>ctm</option>
</select></p>
<p>标题:<br>
<input type=text name=title size=20></p>
<p>内容:<br>
<textarea rows=6 cols=10 name=detail></textarea></p>
<p><input type=submit value=submit></p>
</form>
<?php
switch ($db_name){
case news:$name=news;
break;
case ctm:$name=ctm;
break;
}
$query="insert into ".$name."(title,detail) values('$title','$detail');
$result=mysql_query($query,$db);
if ($result){echo "ok";}
else{echo "failed";}
?>
</body>
</html>
----view_d.php---
<?php
$id=mysql_connect("localhost","username","password");
$db=mysql_select_db("your_db",$id);
?>
<html>
<body>
<?php
if ($recod){
$query="select * from ".$name." where id=".$recod;
$result=mysql_query($query,$db);
$title=mysql_result($result,0,title);
$detail=mysql_result($result,0,detail);
echo "<p>标题:".$title."</p>";
echo "<p>内容:".$detail."</p>";
}
else{echo "此文件已被删除!";}
</body>
</html>
[3]PHP与MySQL交互使用详解
来源: 互联网 发布时间: 2013-11-30
PHP与MySQL交互使用详解
1、创建自动连接数据库的代码,并生成一些必要的代码.我们仔细研究一下数据库的连接函数,会发现是这样的一行代码。
$link_id=@mysql_connect($hostname,$username,$password);
所以我们在include文件connect.inc中添加以下代码就可以了。connect.inc<?php$hostname='localhost';
$username='phpstar';$password='phpstar';$dbname='script';
$tablename='php_script';$link_id=mysql_connect($hostname,$username,$password);
if (! $link_id){ echo '<html><head><title>Error</title></head><body>';
echo 'Connection to PHP has failed.';echo '</body></html>';exit(); }?>
把这个程序加入到每个PHP脚本中,这样当脚本运行时就建立了数据库连接。因为我们的程序具有交互性,我们要处理用户输入的信息,所以在该文件中还应该加入以下代码.
<?php//接着上面的代码//加入一个处理输入信息的代码,并生成一个数组备用$arr_request=array();/*定义数组*/
if (count($HTTP_GET_VARS)) /*如果用户信息以GET方式输入,则读数据*/
{ while (list($key, $value) = each ($HTTP_GET_VARS)) /*函数list()与each()配合处理输入数据*/
{ $arr_request[strtolower($key)] = $value; } }
/*函数strtolower()将起区分作用的key字串转为小写,这样对后面的编程有好处,并把他们组成数组*/
if (count($HTTP_POST_VARS)) /*用户信息以POST方式输入*/
{ while (list($key, $value) = each ($HTTP_POST_VARS))
{ $arr_request[strtolower($key)] = $value; } } //我们还要定义每次输出的HTML
function html_header($title){ echo '<html><head><title>';echo "$title";
echo '</title></head><body bgcolor="#CCCCCC">'; }function html_footer()
{ global $link_id;@mysql_close($link_id);echo '</body></html>';}//还有一个出错信息处理
function html_error_exit($msg){ $errno = mysql_errno(); /*得到错误信息代码*/
$error = mysql_error(); /*得到错误信息,两者一起起排错作用*/
echo '<html><head><title>Error</title></head><body>';echo $msg;
echo "<br>Error: ($errno) $error<br>";echo '</body></html>';exit(); }?>
好了!我们把一些常用的代码放在了这里,用起来就方便了2、 创建数据库表这有两种方法:在DOS环境下输入命令,但容易出错哦.
利用程序,就算出错,修改起来也容易.我们用程序来创建数据表.因为我们的程序要有普遍性,所以表中的字段并不重要,这里我们只是简单的创建一个.该表具有以下管理字段:
key_script 这是一个有自动增量的字段,它保证表中的纪录都是独一无二的.date_created 这是一个日期字段,储存该纪录创建的时间
data_updated 这也是日期字段,储存该纪录最后一次更新的时间
flag_deleted 储存该纪录是否被删除,"Y":该纪录已被删除,"N":该纪录没删除,可使用具有以下储存信息的字段.script_name 程序名称
script_size 程序字节数script_describe 程序的简单说明author_name 程序作者名author_email 程序作者的email
author_homepage 程序作者的主页下面建立该程序:createTable.php<?phprequire('connect.inc');
$str_sql="create table php_script(
key_script int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
date_created datetime DEFAULT '0000-00-00 00:00:00',
date_updated datetime DEFAULT '0000-00-00 00:00:00',
flag_deleted enum('Y','N') DEFAULT 'N' NOT NULL,
script_name VARCHAR(20) NOT NULL,script_size VARCHAR(10) NOT NULL,
script_describe VARCHAR(200) NOT NULL,author_name VARCHAR(20) NOT NULL,
author_email VARCHAR(20) NOT NULL,author_homepage VARCHAR(30) NOT NULL,
primary key (key_script))";$result=mysql_db_query($dbname,$str_sql,$link_id);
if ($result){echo"ok! Table $tablename has been created!";}else{echo"Failed!";}
?>OK! 我们的表建好了!3、生成插入纪录代码程序。似乎我们应该先把纪录显示出来,然后才插入纪录,但因为我们还没有纪录,所以把这一步提到前面来。
首先、创建一个HTML表单,以便用户输入相关信息。其次、创建能插入表单信息的MySQL代码。好! 我们开始,表单样式如下:程序名:文件大小:程序描述:作者名:
作者邮件地址:作者的主页:能插入表单信息的MySQL代码如下:script_insert_action.php<?php
require('connect.inc');if($arr_request['action']=='insert'){
$current_date=date('Y-m-d H:i:s');/*把当前时间按YYYY-MM-DD HH:MM:SS方式排列*/
/*下面要动态生成SQL代码,其中我们定义的自动增量的字段由MySQL自己产生*/
/*另外flag_deleted字段的却省值是"N",所以这两项都不需要我们在这里特别提出来*/
/*大家都知道:PHP严格区分单引号(')、双引号(")的作用。而我们的作者名等在数组内*/
/*我们要这样引用数组:$arr_request['author_name'],注意这里有单引号(')*/
/*而我们在输入insert语句的值时应该这样:VALUES('$current_date') */
/*如果我们不去处理这些分号,就会出现这种情况:VALUES('$arr_request['author_name']') */
/*这种情况PHP能处理好吗?当然不能,所以我们的想方法来处理它*//*这里,我们用下面这种技术来避免这个问题;当然这里还有其它的方法。您先想想吧!*/
$script_name=$arr_request['script_name'];
$script_size=$arr_request['script_size'];
$script_describe=$arr_request['script_describe'];
$author_name=$arr_request['author_name'];
$author_email=$arr_request['author_email'];
$author_homepage=$arr_request['author_homepage'];/*这样一替换,处理时就好多了*/
$str_sql="insert into $tablename(date_created,date_updated,script_name,
script_size,script_describe,author_name,author_email,author_homepage)VALUES(
'$current_date','$current_date','$script_name','$script_size',
'$script_describe','$author_name','$author_email','$author_homepage')";
$result=mysql_db_query($dbname,$str_sql,$link_id);/* 下面给用户简单的信息反馈 */
if (!$result){html_error_exit('MySQL插入命令失败!');}else(html_header('成功');
echo"<center> ";echo('MySQL插入命令成功');echo"<br> ";echo"html_footer();)?>
OK! 插入纪录功能完成!
1、创建自动连接数据库的代码,并生成一些必要的代码.我们仔细研究一下数据库的连接函数,会发现是这样的一行代码。
$link_id=@mysql_connect($hostname,$username,$password);
所以我们在include文件connect.inc中添加以下代码就可以了。connect.inc<?php$hostname='localhost';
$username='phpstar';$password='phpstar';$dbname='script';
$tablename='php_script';$link_id=mysql_connect($hostname,$username,$password);
if (! $link_id){ echo '<html><head><title>Error</title></head><body>';
echo 'Connection to PHP has failed.';echo '</body></html>';exit(); }?>
把这个程序加入到每个PHP脚本中,这样当脚本运行时就建立了数据库连接。因为我们的程序具有交互性,我们要处理用户输入的信息,所以在该文件中还应该加入以下代码.
<?php//接着上面的代码//加入一个处理输入信息的代码,并生成一个数组备用$arr_request=array();/*定义数组*/
if (count($HTTP_GET_VARS)) /*如果用户信息以GET方式输入,则读数据*/
{ while (list($key, $value) = each ($HTTP_GET_VARS)) /*函数list()与each()配合处理输入数据*/
{ $arr_request[strtolower($key)] = $value; } }
/*函数strtolower()将起区分作用的key字串转为小写,这样对后面的编程有好处,并把他们组成数组*/
if (count($HTTP_POST_VARS)) /*用户信息以POST方式输入*/
{ while (list($key, $value) = each ($HTTP_POST_VARS))
{ $arr_request[strtolower($key)] = $value; } } //我们还要定义每次输出的HTML
function html_header($title){ echo '<html><head><title>';echo "$title";
echo '</title></head><body bgcolor="#CCCCCC">'; }function html_footer()
{ global $link_id;@mysql_close($link_id);echo '</body></html>';}//还有一个出错信息处理
function html_error_exit($msg){ $errno = mysql_errno(); /*得到错误信息代码*/
$error = mysql_error(); /*得到错误信息,两者一起起排错作用*/
echo '<html><head><title>Error</title></head><body>';echo $msg;
echo "<br>Error: ($errno) $error<br>";echo '</body></html>';exit(); }?>
好了!我们把一些常用的代码放在了这里,用起来就方便了2、 创建数据库表这有两种方法:在DOS环境下输入命令,但容易出错哦.
利用程序,就算出错,修改起来也容易.我们用程序来创建数据表.因为我们的程序要有普遍性,所以表中的字段并不重要,这里我们只是简单的创建一个.该表具有以下管理字段:
key_script 这是一个有自动增量的字段,它保证表中的纪录都是独一无二的.date_created 这是一个日期字段,储存该纪录创建的时间
data_updated 这也是日期字段,储存该纪录最后一次更新的时间
flag_deleted 储存该纪录是否被删除,"Y":该纪录已被删除,"N":该纪录没删除,可使用具有以下储存信息的字段.script_name 程序名称
script_size 程序字节数script_describe 程序的简单说明author_name 程序作者名author_email 程序作者的email
author_homepage 程序作者的主页下面建立该程序:createTable.php<?phprequire('connect.inc');
$str_sql="create table php_script(
key_script int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
date_created datetime DEFAULT '0000-00-00 00:00:00',
date_updated datetime DEFAULT '0000-00-00 00:00:00',
flag_deleted enum('Y','N') DEFAULT 'N' NOT NULL,
script_name VARCHAR(20) NOT NULL,script_size VARCHAR(10) NOT NULL,
script_describe VARCHAR(200) NOT NULL,author_name VARCHAR(20) NOT NULL,
author_email VARCHAR(20) NOT NULL,author_homepage VARCHAR(30) NOT NULL,
primary key (key_script))";$result=mysql_db_query($dbname,$str_sql,$link_id);
if ($result){echo"ok! Table $tablename has been created!";}else{echo"Failed!";}
?>OK! 我们的表建好了!3、生成插入纪录代码程序。似乎我们应该先把纪录显示出来,然后才插入纪录,但因为我们还没有纪录,所以把这一步提到前面来。
首先、创建一个HTML表单,以便用户输入相关信息。其次、创建能插入表单信息的MySQL代码。好! 我们开始,表单样式如下:程序名:文件大小:程序描述:作者名:
作者邮件地址:作者的主页:能插入表单信息的MySQL代码如下:script_insert_action.php<?php
require('connect.inc');if($arr_request['action']=='insert'){
$current_date=date('Y-m-d H:i:s');/*把当前时间按YYYY-MM-DD HH:MM:SS方式排列*/
/*下面要动态生成SQL代码,其中我们定义的自动增量的字段由MySQL自己产生*/
/*另外flag_deleted字段的却省值是"N",所以这两项都不需要我们在这里特别提出来*/
/*大家都知道:PHP严格区分单引号(')、双引号(")的作用。而我们的作者名等在数组内*/
/*我们要这样引用数组:$arr_request['author_name'],注意这里有单引号(')*/
/*而我们在输入insert语句的值时应该这样:VALUES('$current_date') */
/*如果我们不去处理这些分号,就会出现这种情况:VALUES('$arr_request['author_name']') */
/*这种情况PHP能处理好吗?当然不能,所以我们的想方法来处理它*//*这里,我们用下面这种技术来避免这个问题;当然这里还有其它的方法。您先想想吧!*/
$script_name=$arr_request['script_name'];
$script_size=$arr_request['script_size'];
$script_describe=$arr_request['script_describe'];
$author_name=$arr_request['author_name'];
$author_email=$arr_request['author_email'];
$author_homepage=$arr_request['author_homepage'];/*这样一替换,处理时就好多了*/
$str_sql="insert into $tablename(date_created,date_updated,script_name,
script_size,script_describe,author_name,author_email,author_homepage)VALUES(
'$current_date','$current_date','$script_name','$script_size',
'$script_describe','$author_name','$author_email','$author_homepage')";
$result=mysql_db_query($dbname,$str_sql,$link_id);/* 下面给用户简单的信息反馈 */
if (!$result){html_error_exit('MySQL插入命令失败!');}else(html_header('成功');
echo"<center> ";echo('MySQL插入命令成功');echo"<br> ";echo"html_footer();)?>
OK! 插入纪录功能完成!
最新技术文章: