当前位置: 编程技术>php
本页文章导读:
▪php的header和asp中的redirect比较
asp中实现重定向是用response.redirect 函数: 用法一例: response.redirect "../test.asp" php中也有类似函数:header 用法一例: header("location:../test.php"); 但是两者是有区别的. asp的redirect函数可以在向客户发.........
▪文件上传的实现
文件上传的实现 对ASP比较熟悉的朋友可能知道用ASP上传文件可是不太简单,PHP不同,比较容易,看例子:send.htm和get.php 如下: <!--文件send.htm --> <form ENCTYPE="multipart/form-data" ACTION=.........
▪简单易用的计数器(数据库)
用法 <? include("counter.php"); Counter(__FILE__);//为文件增加一个计数 if($PHP_SELF=="/index.php") { $count=Counter("INDEX_COUNT");//为首页增加一个计数 } else { $count=Counter("INDEX_COUNT","",0);//取得首页计数 } echo ".........
[1]php的header和asp中的redirect比较
来源: 互联网 发布时间: 2013-11-30
asp中实现重定向是用response.redirect 函数:
用法一例:
response.redirect "../test.asp"
php中也有类似函数:header
用法一例:
header("location:../test.php");
但是两者是有区别的.
asp的redirect函数可以在向客户发送头文件后起作用.
如
<html><head></head><body>
<%response.redirect "../test.asp"%>
</body></html>
查是php中下例代码会报错:
<html><head></head><body>
<?
header("location:../test.php");
?>
</body></html>
只能这样:
<?
header("location:../test.php");
?>
<html><head></head><body>...</body></html>
即header函数之前不能向客户发送任何数据.
再看下面一例:
asp中
<html><head></head><body>
<%
response.redirect "../a.asp"
response.redirect "../b.asp"
%>
</body></html>
结果是重定向a.asp文件.
php呢?
<?
header("location:../a.php");
header("location:../b.php");
?>
<html><head></head><body></body></html>
我们发现它重定向b.php.
原来在asp中执行redirect后不会再执行后面的代码.
而php在执行header后,继续执行下面的代码.
在这方面上php中的header重定向不如asp中的重定向.有时我们要重定向后,不能执行后面的代码:
一般地我们用
if(...)
header("...");
else
{
...
}
但是我们可以简单的用下面的方法:
if(...)
{ header("...");break;}
用法一例:
response.redirect "../test.asp"
php中也有类似函数:header
用法一例:
header("location:../test.php");
但是两者是有区别的.
asp的redirect函数可以在向客户发送头文件后起作用.
如
<html><head></head><body>
<%response.redirect "../test.asp"%>
</body></html>
查是php中下例代码会报错:
<html><head></head><body>
<?
header("location:../test.php");
?>
</body></html>
只能这样:
<?
header("location:../test.php");
?>
<html><head></head><body>...</body></html>
即header函数之前不能向客户发送任何数据.
再看下面一例:
asp中
<html><head></head><body>
<%
response.redirect "../a.asp"
response.redirect "../b.asp"
%>
</body></html>
结果是重定向a.asp文件.
php呢?
<?
header("location:../a.php");
header("location:../b.php");
?>
<html><head></head><body></body></html>
我们发现它重定向b.php.
原来在asp中执行redirect后不会再执行后面的代码.
而php在执行header后,继续执行下面的代码.
在这方面上php中的header重定向不如asp中的重定向.有时我们要重定向后,不能执行后面的代码:
一般地我们用
if(...)
header("...");
else
{
...
}
但是我们可以简单的用下面的方法:
if(...)
{ header("...");break;}
[2]文件上传的实现
来源: 互联网 发布时间: 2013-11-30
文件上传的实现
对ASP比较熟悉的朋友可能知道用ASP上传文件可是不太简单,PHP不同,比较容易,看例子:send.htm和get.php 如下:
<!--文件send.htm -->
<form ENCTYPE="multipart/form-data" ACTION="/blog_article/get.html" METHOD=post>
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <INPUT NAME="userfile" TYPE="file">
<INPUT TYPE="submit" VALUE="Send File">
</form>
下面的代码接收上传的文件
<?php
#文件get.php
if (rename($userfile,"\dir\upload.dat)") {
echo "成功!";
}
else {
echo "上传不成功!";
}
?>
说明:
一、php.ini文件中upload_tmp_dir用来说明PHP上传的文件放置的临时目录
二、存放在临时目录的上传文件如果没有被移动或改名,那么马上会被删除
三、上传文件的目录要有写权限
最后的建议:不要让用户上传可以执行的文件,要不就设置不可以执行,大家应该知道为什么
对ASP比较熟悉的朋友可能知道用ASP上传文件可是不太简单,PHP不同,比较容易,看例子:send.htm和get.php 如下:
<!--文件send.htm -->
<form ENCTYPE="multipart/form-data" ACTION="/blog_article/get.html" METHOD=post>
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <INPUT NAME="userfile" TYPE="file">
<INPUT TYPE="submit" VALUE="Send File">
</form>
下面的代码接收上传的文件
<?php
#文件get.php
if (rename($userfile,"\dir\upload.dat)") {
echo "成功!";
}
else {
echo "上传不成功!";
}
?>
说明:
一、php.ini文件中upload_tmp_dir用来说明PHP上传的文件放置的临时目录
二、存放在临时目录的上传文件如果没有被移动或改名,那么马上会被删除
三、上传文件的目录要有写权限
最后的建议:不要让用户上传可以执行的文件,要不就设置不可以执行,大家应该知道为什么
[3]简单易用的计数器(数据库)
来源: 互联网 发布时间: 2013-11-30
用法
<?
include("counter.php");
Counter(__FILE__);//为文件增加一个计数
if($PHP_SELF=="/index.php")
{
$count=Counter("INDEX_COUNT");//为首页增加一个计数
}
else
{
$count=Counter("INDEX_COUNT","",0);//取得首页计数
}
echo "你是第$count个访问者";
?>
--------counter.php-----------
<?
if(!isset($PHP_INCLUDE_COUNTER_PHP))
{$PHP_INCLUDE_COUNTER_PHP=__FILE;
$counter_error_state=0;
$counter_error_msg="";
function Counter($file,$query="",$add=1)
{
$db_name="database";
$db_user="username";
$db_pass="password";
$db_table="counter";
if(empty($file))
{
$counter_error_state=-100;
$counter_error_msg="缺少第一个参数或参数为空";
return -100;
}
global $PHP_SELF,$QUERY_STRING,$counter_error_state,$counter_error_msg;
if(empty($db_user)||!$db_user||$db_user=="")$res=@mysql_connect("localhost");
else $res=@mysql_connect("localhost",$db_user,$db_pass);
if(!$res)
{
$counter_error_states=-10;
$counter_error_msg="不能连接数据库";
return -10;
}
if(!@mysql_select_db($db_name))
{
$counter_error_states=-11;
$counter_error_msg="不能选择数据库";
return -11;
}
else
{
if(!$db_res=@mysql_query("SELECT * FROM ".$db_table))
{
if(!$db_res=@mysql_query("CREATE TABLE ".$db_table." (id INTEGER AUTO_INCREMENT,PRIMARY KEY (id),file VARCHAR(255),query VARCHAR(255),time VARCHAR(255),count INT)"))
{
$counter_error_states=-20;
$counter_error_msg="不能创建数据表";
return -20;
}
@mysql_free_result($db_res);
}
$str="SELECT * FROM ".$db_table." WHERE file=\"".$file."\" AND query=\"".$query."\"";
if(!$db_res=@mysql_query($str))
{
$counter_error_states=-30;
$counter_error_msg="不能查询记录";
return -30;
}
$num=@mysql_num_rows($db_res);
if($num>1)
{
$counter_error_states=-40;
$counter_error_msg="发生没有预期的错误=数据行数错误";
return -40;
}
$count=0;
$str="INSERT ";
$strWhere="";
if($num==1)
{
$row=@mysql_fetch_array($db_res);
@mysql_free_result($db_res);
$count=$row["count"];
$id=$row["id"];
$str="UPDATE ";
$strWhere=" WHERE id=$id";
}
if($add<1)return $count;
$count+=$add;
$str.=$db_table." SET file=\"".$file."\",query=\"".$query."\",time=\"".date("Y;n;d;G;i;s")."\",count=".$count.$strWhere;
$db_res=@mysql_query($str);
if(!$db_res)
{
$counter_error_states=-50;
$counter_error_msg="不能添加或更新记录";
return -50;
}
return $count;
}
}
}
?>
<?
include("counter.php");
Counter(__FILE__);//为文件增加一个计数
if($PHP_SELF=="/index.php")
{
$count=Counter("INDEX_COUNT");//为首页增加一个计数
}
else
{
$count=Counter("INDEX_COUNT","",0);//取得首页计数
}
echo "你是第$count个访问者";
?>
--------counter.php-----------
<?
if(!isset($PHP_INCLUDE_COUNTER_PHP))
{$PHP_INCLUDE_COUNTER_PHP=__FILE;
$counter_error_state=0;
$counter_error_msg="";
function Counter($file,$query="",$add=1)
{
$db_name="database";
$db_user="username";
$db_pass="password";
$db_table="counter";
if(empty($file))
{
$counter_error_state=-100;
$counter_error_msg="缺少第一个参数或参数为空";
return -100;
}
global $PHP_SELF,$QUERY_STRING,$counter_error_state,$counter_error_msg;
if(empty($db_user)||!$db_user||$db_user=="")$res=@mysql_connect("localhost");
else $res=@mysql_connect("localhost",$db_user,$db_pass);
if(!$res)
{
$counter_error_states=-10;
$counter_error_msg="不能连接数据库";
return -10;
}
if(!@mysql_select_db($db_name))
{
$counter_error_states=-11;
$counter_error_msg="不能选择数据库";
return -11;
}
else
{
if(!$db_res=@mysql_query("SELECT * FROM ".$db_table))
{
if(!$db_res=@mysql_query("CREATE TABLE ".$db_table." (id INTEGER AUTO_INCREMENT,PRIMARY KEY (id),file VARCHAR(255),query VARCHAR(255),time VARCHAR(255),count INT)"))
{
$counter_error_states=-20;
$counter_error_msg="不能创建数据表";
return -20;
}
@mysql_free_result($db_res);
}
$str="SELECT * FROM ".$db_table." WHERE file=\"".$file."\" AND query=\"".$query."\"";
if(!$db_res=@mysql_query($str))
{
$counter_error_states=-30;
$counter_error_msg="不能查询记录";
return -30;
}
$num=@mysql_num_rows($db_res);
if($num>1)
{
$counter_error_states=-40;
$counter_error_msg="发生没有预期的错误=数据行数错误";
return -40;
}
$count=0;
$str="INSERT ";
$strWhere="";
if($num==1)
{
$row=@mysql_fetch_array($db_res);
@mysql_free_result($db_res);
$count=$row["count"];
$id=$row["id"];
$str="UPDATE ";
$strWhere=" WHERE id=$id";
}
if($add<1)return $count;
$count+=$add;
$str.=$db_table." SET file=\"".$file."\",query=\"".$query."\",time=\"".date("Y;n;d;G;i;s")."\",count=".$count.$strWhere;
$db_res=@mysql_query($str);
if(!$db_res)
{
$counter_error_states=-50;
$counter_error_msg="不能添加或更新记录";
return -50;
}
return $count;
}
}
}
?>
最新技术文章: