PHP实用小程序(六)
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<title>检测操作系统和浏览器类型</title>
</HEAD>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="20" bgColor="#FFFFFF">
<?
/*
浏览器类型、版本
*/ if(ereg( 'MSIE ([0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version))
{
$browser_Ver=$log_version[1];
$browserType='IE';
}
elseif(ereg( 'Opera ([0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version))
{
$browser_Ver=$log_version[1];
$browserType='OPERA';
}
elseif(ereg( 'Mozilla/([0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version))
{
$browser_Ver=$log_version[1];
$browserType='MOZILLA';
}
else
{
$browser_Ver=0;
$browserType='OTHER';
}
echo "<br><br>浏览器类型:<font color=red>$browserType $browser_Ver</font>";
/*
操作系统类型
*/
if(strpos($HTTP_USER_AGENT,'Windows 9'))
{
$osType="Windows 9X";
}
elseif(strpos($HTTP_USER_AGENT,'Windows NT'))
{
$osType="Windows NT";
}
elseif(strpos($HTTP_USER_AGENT,'Windows 2000'))
{
$osType="Windows 2000";
}
elseif(strpos($HTTP_USER_AGENT,'Mac'))
{
$osType="Mac";
}
elseif(strpos($HTTP_USER_AGENT,'Unix'))
{
$osType="Unix";
}
elseif(strpos($HTTP_USER_AGENT,'Linux'))
{
$osType="Linux";
}else $osType="Others"; echo "<br><br>操作系统类型:<font color=red>$osType</font>";
echo "<br><br>IP地址:<font color=red>$REMOTE_ADDR</font>";
?>
</bady>
</html>
<?
/*本例是用PHP4连接一个mysql数据库操作的演示,
实现连接打开一个库,并读取数据的基本功能。
*/
?>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<style type="text/css">
<!--
input { font-size:9pt;}
A:link {text-decoration: underline; font-size:9pt;color:000059}
A:visited {text-decoration: underline; font-size:9pt;color:000059}
A:active {text-decoration: none; font-size:9pt}
A:hover {text-decoration:underline;color:red}
body,table {font-size: 9pt}
tr,td{font-size:9pt}
-->
</style>
<title>注册会员列表 - 读取mysql的测试</title>
</HEAD>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<br><br><center><font color=green size=3><b>注 册 会 员 列 表</b></font></center>
<br>
<table cellspacing=0 bordercolordark=#FFFFFF width="95%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="5%" align="center" valign="bottom" height="19">ID</td>
<td width="10%" align="center" valign="bottom">姓名</td>
<td width="5%" align="center" valign="bottom">性别</td>
<td width="5%" align="center" valign="bottom">年龄</td>
<td width="20%" align="center" valign="bottom">联系电话</td>
<td width="20%" align="center" valign="bottom">电子邮件</td>
<td width="20%" align="center" valign="bottom">家庭住址</td>
</tr>
<?
//连接到本地mysql数据库
$myconn=mysql_connect("localhost","root","");
//选择test为操作库
mysql_select_db("test",$myconn);
$strSql="select * from reguser";
//用mysql_query函数从user表里读取数据
$result=mysql_query($strSql,$myconn);
while($row=mysql_fetch_array($result))//通过循环读取数据内容
{
?>
<tr>
<td align="center" height="19"><?echo $row["id"]?></td>
<td align="center"><?echo $row["userid"]?></td>
<td align="center"><?echo $row["sex"]?></td>
<td align="center"><?echo $row["age"]?></td>
<td align="center"><?echo $row["tel"]?></td>
<td align="center"><?echo $row["email"]?></td>
<td align="center"><?echo $row["address"]?></td>
</tr>
<?
}
//关闭对数据库的连接
mysql_close($myconn);
?>
</table>
</BODY>
</HTML>
<?
//本例是用PHP4实现向一个mysql数据表添加记录,
?>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<style type="text/css">
<!--
input { font-size:9pt;}
A:link {text-decoration: underline; font-size:9pt;color:000059}
A:visited {text-decoration: underline; font-size:9pt;color:000059}
A:active {text-decoration: none; font-size:9pt}
A:hover {text-decoration:underline;color:red}
body,table {font-size: 9pt}
tr,td{font-size:9pt}
-->
</style>
<title>会员注册 - 添加记录演示</title>
</HEAD>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<?
if(strlen($userid)<1)
{
?>
<br><br><center><font color=green size=3><b>注 册 会 员 表 单</b></font></center>
<br>
<form action="<? echo $PHP_SELF; ?>" method="get" name="frmAdduser">
<table cellspacing=0 bordercolordark=#FFFFFF width="60%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="100%" align="center" valign="bottom" height="19" colspan="2">请仔细填写以下内容</td>
</tr>
<tr>
<td width="30%" align="right" height="19">姓名:</td>
<td width="70%"><input type="text" name="userid" size="10" maxlength="18"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">性别:</td>
<td width="70%"><input type="radio" name="sex" value="男" checked>男
<input type="radio" name="sex" value="女">女</td>
</tr>
<tr>
<td width="30%" align="right" height="19">年龄:</td>
<td width="70%"><input type="text" name="age" size="5" maxlength="2"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">联系电话:</td>
<td width="70%"><input type="text" name="tel" size="20"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">电子邮件:</td>
<td width="70%"><input type="text" name="email" size="20"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">家庭住址:</td>
<td width="70%"><input type="text" name="address" size="30"></td>
</tr>
<tr>
<td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td>
</tr>
</table>
</form>
<?
}
else
{
//连接到本地mysql数据库
$myconn=mysql_connect("localhost","root","");
mysql_select_db("test",$myconn);
//将用户填写信息添加到数据库
$strSql="insert into reguser(userid,sex,age,tel,email,address)
values('$userid','$sex',$age,'$tel','$email','$address')";
$result=mysql_query($strSql,$myconn) or die(mysql_error());
//关闭对数据库的连接
mysql_close($myconn);
echo "<br><br><br><center>您已经成功注册成我们的会员!<br><br><br><br><a href=\"7-1.php\">查看会员资料</a></center>";
}
?>
</BODY>
</HTML>
<?
//本例是用PHP4实现修改一个mysql数据表,
?>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<style type="text/css">
<!--
input { font-size:9pt;}
A:link {text-decoration: underline; font-size:9pt;color:000059}
A:visited {text-decoration: underline; font-size:9pt;color:000059}
A:active {text-decoration: none; font-size:9pt}
A:hover {text-decoration:underline;color:red}
body,table {font-size: 9pt}
tr,td{font-size:9pt}
-->
</style>
<title>会员注册 - 修改记录测试</title>
</HEAD>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<br><br><center><font color=green size=3><b>注 册 会 员 信 息 编 辑 表 单</b></font></center>
<br>
<?
//连接到本地mysql数据库
$myconn=mysql_connect("localhost","root","");
//选择test为操作库
mysql_select_db("test",$myconn);
if(strlen($id)<1)
{
?> <table cellspacing=0 bordercolordark=#FFFFFF width="95%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="5%" align="center" valign="bottom" height="19">ID</td>
<td width="10%" align="center" valign="bottom">姓名</td>
<td width="5%" align="center" valign="bottom">性别</td>
<td width="5%" align="center" valign="bottom">年龄</td>
<td width="20%" align="center" valign="bottom">联系电话</td>
<td width="20%" align="center" valign="bottom">电子邮件</td>
<td width="20%" align="center" valign="bottom">家庭住址</td>
</tr>
<?
$strSql="select * from reguser";
//用mysql_query函数从reguser表里读取数据
$result=mysql_query($strSql,$myconn);
while($row=mysql_fetch_array($result))//通过循环读取数据内容
{
?>
<tr>
<td align="center" height="19"><?echo $row["id"]?></td>
<td align="center"><a href="83.php?id=<?echo $row["id"]?>"><?echo $row["userid"]?></a></td>
<td align="center"><?echo $row["sex"]?></td>
<td align="center"><?echo $row["age"]?></td>
<td align="center"><?echo $row["tel"]?></td>
<td align="center"><?echo $row["email"]?></td>
<td align="center"><?echo $row["address"]?></td>
</tr>
<?
}
?>
</table>
<?
}
else if(strlen($userid)<1)
{
//将用户的信息填写到输入框
$strSql="select * from reguser where id=$id";
$result=mysql_query($strSql,$myconn) or die(mysql_error());
$row=mysql_fetch_array($result);
?>
<form action="<? echo $PHP_SELF; ?>" method="get" name="frmAdduser">
<table cellspacing=0 bordercolordark=#FFFFFF width="60%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="100%" align="center" valign="bottom" height="19" colspan="2">用户信息修改</td>
</tr>
<tr>
<td width="30%" align="right" height="19">姓名:</td>
<td width="70%"><input type="text" name="userid" size="10" maxlength="18" value="<?echo $row["userid"]?>"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">性别:</td>
<td width="70%">
<?//隐藏用户ID?>
<input type="hidden" name="id" value="<?echo $row["id"]?>">
<input type="radio" name="sex" value="男"<?if($row["sex"]=="男") print(" checked");?>>男
<input type="radio" name="sex" value="女"<?if($row["sex"]=="女") print(" checked");?>>女</td>
</tr>
<tr>
<td width="30%" align="right" height="19">年龄:</td>
<td width="70%"><input type="text" name="age" size="5" maxlength="2" value="<?echo $row["age"]?>"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">联系电话:</td>
<td width="70%"><input type="text" name="tel" size="20" value="<?echo $row["tel"]?>"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">电子邮件:</td>
<td width="70%"><input type="text" name="email" size="20" value="<?echo $row["email"]?>"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">家庭住址:</td>
<td width="70%"><input type="text" name="address" size="30" value="<?echo $row["address"]?>"></td>
</tr>
<tr>
<td width="100%" align="center" colspan="2"><input type="submit" value="修 改"> <input type="reset" value="取 消"></td>
</tr>
</table>
</form>
<?
}
//如果用户填写了资料则对数据进行更新
if(strlen($userid)>1)
{
$strSql="update reguser set userid='$userid',sex='$sex',age=$age,tel='$tel',email='$email',address='$address' where id=$id";
//更新该ID所对应的资料
$result=mysql_query($strSql,$myconn) or die(mysql_error());
echo "<br><br><br><center>您已经成功修改了用户信息!<br><br><br><br><a href=\"82.php\">查看会员资料</a></center>";
}
//关闭对数据库的连接
mysql_close($myconn);
?>
</BODY>
</HTML>
<?
//本例是用PHP4实现删除一个mysql数据记录,
?>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<style type="text/css">
<!--
input { font-size:9pt;}
A:link {text-decoration: underline; font-size:9pt;color:000059}
A:visited {text-decoration: underline; font-size:9pt;color:000059}
A:active {text-decoration: none; font-size:9pt}
A:hover {text-decoration:underline;color:red}
body,table {font-size: 9pt}
tr,td{font-size:9pt}
-->
</style>
<title>会员注册 - 删除记录演示</title>
</HEAD>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<br><br><center><font color=green size=3><b>注 册 会 员 信 息 删 除 表 单</b></font></center>
<br>
<?
//连接到本地mysql数据库
$myconn=mysql_connect("localhost","root","");
//选择test为操作库
mysql_select_db("test",$myconn);
if(strlen($id)<1)
{
?> <table cellspacing=0 bordercolordark=#FFFFFF width="95%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="5%" align="center" valign="bottom" height="19">ID</td>
<td width="10%" align="center" valign="bottom">姓名</td>
<td width="5%" align="center" valign="bottom">性别</td>
<td width="5%" align="center" valign="bottom">年龄</td>
<td width="20%" align="center" valign="bottom">联系电话</td>
<td width="20%" align="center" valign="bottom">电子邮件</td>
<td width="20%" align="center" valign="bottom">家庭住址</td>
</tr>
<?
$strSql="select * from reguser";
//用mysql_query函数从reguser表里读取数据
$result=mysql_query($strSql,$myconn);
while($row=mysql_fetch_array($result))//通过循环读取数据内容
{
?>
<tr>
<td align="center" height="19"><?echo $row["id"]?></td>
<td align="center"><a href="<?echo $PHP_SELF?>?id=<?echo $row["id"]?>"><?echo $row["userid"]?></a></td>
<td align="center"><?echo $row["sex"]?></td>
<td align="center"><?echo $row["age"]?></td>
<td align="center"><?echo $row["tel"]?></td>
<td align="center"><?echo $row["email"]?></td>
<td align="center"><?echo $row["address"]?></td>
</tr>
<?
}
?>
</table>
<?
}
else
{
//进行删除操作$id为删除的记录号
$strSql="delete from reguser where id=$id";
$result=mysql_query($strSql,$myconn) or die(mysql_error());
echo "<br><br><br><center>您已经成功删除了该ID的信息!<br><br><br><br><a href=\"$PHP_SELF\">查看会员资料</a></center>";
}
//关闭对数据库的连接
mysql_close($myconn);
?>
</BODY>
</HTML>
<?
/*本例是用PHP4通过ODBC访问数据库操作的演示*/
?>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<style type="text/css">
<!--
input { font-size:9pt;}
A:link {text-decoration: underline; font-size:9pt;color:000059}
A:visited {text-decoration: underline; font-size:9pt;color:000059}
A:active {text-decoration: none; font-size:9pt}
A:hover {text-decoration:underline;color:red}
body,table {font-size: 9pt}
tr,td{font-size:9pt}
-->
</style>
<title>注册会员列表 - 通过ODBC访问数据库演示</title>
</HEAD>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<br><br><center><font color=green size=3><b>注 册 会 员 列 表</b></font></center>
<br>
<table cellspacing=0 bordercolordark=#FFFFFF width="95%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="5%" align="center" valign="bottom" height="19">ID</td>
<td width="10%" align="center" valign="bottom">姓名</td>
<td width="5%" align="center" valign="bottom">性别</td>
<td width="5%" align="center" valign="bottom">年龄</td>
<td width="20%" align="center" valign="bottom">联系电话</td>
<td width="20%" align="center" valign="bottom">电子邮件</td>
<td width="20%" align="center" valign="bottom">家庭住址</td>
</tr>
<?
//连接到ODBC数据库
$myconn=odbc_connect("fengfeng","sa","123");
$strSql="select * from reguser";
/*执行查询*/
$result=odbc_do($myconn,$strSql);
//Boolean odbc_fetch_row(integer result,integer row)
while(odbc_fetch_row($result))//通过循环读取数据内容
{
?>
<tr>
<td align="center" height="19"><?echo odbc_result($result,1)?></td>
<td align="center"><?echo odbc_result($result,2)?></td>
<td align="center"><?echo odbc_result($result,3)?></td>
<td align="center"><?echo odbc_result($result,4)?></td>
<td align="center"><?echo odbc_result($result,5)?></td>
<td align="center"><?echo odbc_result($result,6)?></td>
<td align="center"><?echo odbc_result($result,7)?></td>
</tr>
<?
}
//关闭对数据库的连接
odbc_close("$myconn");
?>
</table>
</BODY>
</HTML>
<?
//本例是用PHP4实现向一个ODBC数据表添加记录,
?>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<style type="text/css">
<!--
input { font-size:9pt;}
A:link {text-decoration: underline; font-size:9pt;color:000059}
A:visited {text-decoration: underline; font-size:9pt;color:000059}
A:active {text-decoration: none; font-size:9pt}
A:hover {text-decoration:underline;color:red}
body,table {font-size: 9pt}
tr,td{font-size:9pt}
-->
</style>
<title>会员注册 - 添加记录演示</title>
</HEAD>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<?
if(strlen($userid)<1)
{
?>
<br><br><center><font color=green size=3><b>注 册 会 员 表 单</b></font></center>
<br>
<form action="<? echo $PHP_SELF; ?>" method="get" name="frmAdduser">
<table cellspacing=0 bordercolordark=#FFFFFF width="60%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="100%" align="center" valign="bottom" height="19" colspan="2">请仔细填写以下内容</td>
</tr>
<tr>
<td width="30%" align="right" height="19">姓名:</td>
<td width="70%"><input type="text" name="userid" size="10" maxlength="18"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">性别:</td>
<td width="70%"><input type="radio" name="sex" value="男" checked>男
<input type="radio" name="sex" value="女">女</td>
</tr>
<tr>
<td width="30%" align="right" height="19">年龄:</td>
<td width="70%"><input type="text" name="age" size="5" maxlength="2"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">联系电话:</td>
<td width="70%"><input type="text" name="tel" size="20"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">电子邮件:</td>
<td width="70%"><input type="text" name="email" size="20"></td>
</tr>
<tr>
<td width="30%" align="right" height="19">家庭住址:</td>
<td width="70%"><input type="text" name="address" size="30"></td>
</tr>
<tr>
<td width="100%" align="center" colspan="2"><input type="submit" value="马上注册"> <input type="reset" value="全部重写"></td>
</tr>
</table>
</form>
<?
}
else
{
//连接到ODBC数据库
$myconn=odbc_connect("fengfeng","sa","123");
//将用户填写信息添加到数据库
$strSql="insert into reguser(userid,sex,age,tel,email,address)
values('$userid','$sex',$age,'$tel','$email','$address')";
$result=odbc_do($myconn,$strSql);
//关闭对数据库的连接
odbc_close("$myconn");
echo "<br><br><br><center>您已经成功注册成我们的会员!<br><br><br><br><a href=\"7-5.php\">查看会员资料</a></center>";
}
?>
</BODY>
</HTML>
<html>
<head>
<title>用户登录</title>
</head>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<br>
<?
if($userid!="")
{
mysql_connect("localhost", "root", "");
mysql_select_db("test") or die ("不能连接到数据库!");
//判断用户名和密码是否在正确
$strSql="select * from users where userid='$userid' and password='$password'";
$result=mysql_query($strSql);// or die("读取数据库出现错误!");
$num=mysql_numrows($result);
mysql_close($myconn);
if($num>0)
{
echo "<center>登录成功!</center><br>";
}
else echo "<center><font color=red>登录失败!请检查用户名和密码!</font></center><br>";
}
else
{
echo "<center>请输入用户名和密码登录!</center>"
?>
<form action="<?echo $PHP_SELF?>" method="post">
<table cellspacing=0 bordercolordark=#FFFFFF width="60%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="100%" align="center" valign="bottom" height="19" colspan="3">用户登录</td>
</tr>
<tr>
<td width="30%" align="center">用户名:</td>
<td width="70%" align="center"><input type="text" name="userid" size="20" maxsize="20"></td>
</tr>
<tr>
<td width="30%" align="center">密 码:</td>
<td width="70%" align="center"><input type="password" name="password" size="20" maxsize="20"></td>
</tr>
<tr>
<td width="100%" align="center" colspan="2"><input type="submit" value="登录"></td>
</tr>
</table>
</form>
<?
}
?>
</body>
</html>
<html>
<head>
<title>注册新用户</title>
</head>
<body alink="#FF0000" link="#000099" vlink="#CC6600" topmargin="8" leftmargin="0" bgColor="#FFFFFF">
<br>
<?
if($userid!="")
{
$ID = uniqid("userID");
$db = mysql_connect("localhost","root","");
mysql_select_db ("test");
$result = mysql_query ("insert into users (id, username, userid, password, email)
VALUES ('$ID', '$username', '$userid', '$password','$email')");
if(!$result)
{
echo "<center>出现错误:</center>", mysql_error();
exit;
}
if($result)
{
mysql_close($db);
echo "<center>用户 <b>$username</b> 注册成功!</center>";
}
}
else
{
echo "<center>资料填写不完整,请仔细填写!</center>";
?>
<form method="post" action="<?echo $PHP_SELF?>">
<table cellspacing=0 bordercolordark=#FFFFFF width="60%" bordercolorlight=#000000 border=1 align="center" cellpadding="2">
<tr bgcolor="#6b8ba8" style="color:FFFFFF">
<td width="100%" align="center" valign="bottom" height="19">注册新用户</td>
</tr>
<tr>
<td width="100%" align="center">
姓名:<INPUT TYPE=text MAXLENGTH=20 NAME="username" SIZE=20><Br>
呢称:<INPUT TYPE=text MAXLENGTH=20 NAME="userid" SIZE=20><Br>
密码:<Input Type=text Maxlength=20 Name="password" Size=20><Br>
邮件:<Input Type=text Maxlength=50 Name="email" Size=20><Br>
<INPUT TYPE=submit VALUE="注 册">
<INPUT type=reset VALUE="重 填">
</td>
</tr>
</table>
</form>
<?
}
?>
</body>
</html>
PHP实用小程序(六)的更多相关文章
- 微信小程序(六)-项目实例(原生框架 MINA基配搭建)==01-头搜索框tabbar
项目实例(原生框架 MINA) 1.新建小程序项目 1.用自已的小程序APPID 2.清除整理项目中初建默认无关的代码 1.app.json 中删除logs,同时删除pages下的losgs文件夹 2 ...
- PHP实用小程序(七)
<? //用COOKIE保存投票人的投票记录 if($vote && !$already_voted) SetCookie("already_voted",& ...
- PHP实用小程序(五)
<HTML> <HEAD> <TITLE>图像函数</TITLE> </HEAD> <BODY> <img src=&qu ...
- PHP实用小程序(四)
<HTML> <HEAD> <TITLE>访问文件时间属性</TITLE> </HEAD> <BODY> <? $Last ...
- PHP实用小程序(三)
<HTML> <HEAD> <TITLE>给数组增加元素</TITLE> </HEAD> <? $Cities[] = "& ...
- PHP实用小程序(二)
<HTML> <HEAD> <TITLE>经典循环例子</TITLE> </HEAD> <BODY> <? ; $coun ...
- PHP实用小程序(一)
<? //设置路径(默认当前php文件所在路径) $basedir = "d:/inetpub/wwwroot"; $textrows = "20"; $ ...
- 微信小程序开发 (资料汇总,谁还没被坑过?希望助你绕过一些坑)
最近帮人家做一个微信小程序,刚好想熟悉一下.由于牵扯到多用户使用系统,以及数据共享,所以自然架构选择了,客户端和服务器的方式. 后台服务器是windows server,后台程序是.Net WebA ...
- 【微信小程序开发•系列文章六】生命周期和路由
这篇文章理论的知识比较多一些,都是个人观点,描述有失妥当的地方希望读者指出. [微信小程序开发•系列文章一]入门 [微信小程序开发•系列文章二]视图层 [微信小程序开发•系列文章三]数据层 [微信小程 ...
随机推荐
- Linux随笔记
Linux配置apt-get源地址 以Ubuntu配置网易开源镜像站为例: 访问地址:http://mirrors.163.com/,找到对应的系统. 先将source.list进行备份,执行: su ...
- lua 字符串处理
匹配模式(pattern) . 任何单个字符 %a 任何字母 %c 任何控制字符 %d 任何数字 %g 任何除空白符外的可打印字符 %l 所有小写字母 %p 所有标点符号 %s 所有空白字符 %u 所 ...
- VMware虚拟机下实现Linux与window文件夹共享
这里说的是在VMware虚拟机下来实现在windows与Linux下共享一个文件夹. 下面来说明一下是如何实现的: 1.安装VMware.Workstation. 2.安装Fedora10. 3.完成 ...
- 程序猿的量化交易之路(27)--Cointrader之PriceData价格数据(14)
转载须注明出处:http://blog.csdn.net/minimicall?viewmode=contents,http://cloudtrade.top/ PriceData:价格数据.价格数据 ...
- ios 使用自定义字体
本文转载至 http://blog.csdn.net/yesjava/article/details/8447596 1.下载要使用的自定义字体,格式通常为ttf.otf文件.这里假设是nokia ...
- hdu5258简单枚举
百度之星复赛第一题.不明白这么水的题为何一堆人没过...这些人是咋晋级复赛的呢... /* * Author : ben */ #include <cstdio> #include < ...
- Android笔记之使用LocationManager获取经纬度
LocationManager.getLastKnownLocation(String provider)有可能返回null,概率还挺高 findViewById(R.id.llMain).setOn ...
- java 传参方式--值传递还是引用传递
java 传参方式--值传递还是引用传递 参数是按值而不是按引用传递的说明 Java 应用程序有且仅有的一种参数传递机制,即按值传递.写它是为了揭穿普遍存在的一种神话,即认为 Java 应用程序按引用 ...
- 关于Fragment的onActivityResult 不执行
1.getActivity().startActivityForResult(); 与 fragment.startActivityForActivity(): getActivity().star ...
- vue路由总结
vue-router, vue自带的路由,下面是一些简单的操作说明: 一.安装 1.cnpm install vue-router --save 命令进行安装 2.在main.js或者使用vue-r ...