最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

一些php常用代码

来源:http://erdangjiade.com/topic/123282.html 你好,世界。 2017-10-04 21:03浏览(26)

12、验证用户名及密码是否填写(javascript)
<SCRIPT language=javascript>
<!--
function confirmlogin()
{
if (document.frmmain.username.value.length<4 || document.frmmain.username.value=="")
{
     document.frmmain.username.focus();
     document.frmmain.username.select;
     window.alert("请输入你的用户名!");
     return false;
}
if (document.frmmain.password.value.length<4)
{
     document.frmmain.password.focus();
     document.frmmain.password.select;
     window.alert("请输入你的密码!");
     return false;
}
    return true;
}
//-->
</SCRIPT>
13、在PHP中调用编辑器的方法
1)将编辑器文件夹放置后台管理文件夹内。
2)利用以下语句进行引入操作。
<input name="content" type="hidden" value=''>
<IFRAME ID="eWebEditor1" src="eWebEditorPHP38/ewebeditor.htm?id=content&style=coolblue" frameborder="0" scrolling="no" width="550" height="350"></IFRAME>
注:eWebEditorPHP38编辑器文件夹的名称。
    id=content中content为上面隐藏域的名称
14、循环输出(能够实现分列)
   1)首先插入一行一列表格
<?php
$i=1;
?>
<table>
   <tr>
    <?php
while($rs=mysql_fetch_array($conn)){
?>
   <td>
    被循环的其它表格和输出
   </td>
   <?php
      if ($i % 2==0) {
   echo "</tr><tr>";
   }
   $i++;
    }
   ?>
   </tr>
</table>
15、给下拉列表框绑定数据(并且在修改时默认选中)
<select name="fenleiid">
<?php
$sql="select * from fenleibiao";
$conn=mysql_query($sql,$connec);
while($rs1=mysql_fetch_array($conn)){
?>
 
<option value="<?=$rs1["fenleiid"]?>"
<?
if ($rs["fenleiid"]==$rs1["fenleiid"]){
echo "selected" ;
}
?>>
<?=$rs1["flname"]?>
</option>
        <?php>
}
?>
          </select>
16、获取字符长度函数
strlen($c)>12

评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2