WEB开发网
开发学院WEB开发PHP 一些php常用代码 阅读

一些php常用代码

 2012-06-25 11:56:02 来源:WEB开发网   
核心提示:12、验证用户名及密码是否填写(javascript)<SCRIPT language=javascript><!--function confirmlogin(){if (document.frmmain.username.value.length<4 || document.frmmain.
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

Tags:一些 php 常用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接