|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
基础这个东西是个比较笼统的概念,如果你之前学习过c语言, c语言被认为是 PHP操作数据库时主动创立字段,以下代码:
- <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>静态
创立
字段 - www.cxybl.com</title> <style type="text/CSS"> <!-- .STYLE1 {font-size: 12px} --> </style> </head> <body> <form id="form1" name="form1" method="post" action="index_ok.php"> <table width="467" height="289" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="168" height="89"> </td> <td width="289"> </td> </tr> <tr> <td height="30" align="right"><span class="STYLE1">选择表 </span></td> <td class="STYLE1"><input name="table" type="text" id="table" size="20" /></td> </tr> <tr> <td height="30" align="right"><span class="STYLE1">字段 </span></td> <td class="STYLE1"><input name="field" type="text" id="field" size="20"></td> </tr> <tr> <td height="30" align="right"><span class="STYLE1">类型 </span></td> <td class="STYLE1"><select name="type" id="type"> <option>int</option> <option>text</option> <option>date</option> <option>double</option> <option>varchar</option> <option>datetime</option> <option>blob</option> </select> </td> </tr> <tr> <td height="30" align="right"><span class="STYLE1">长度 </span></td> <td class="STYLE1"><input name="length" type="text" id="length" size="15"></td> </tr> <tr> <td height="30" align="right"><span class="STYLE1">NULL </span></td> <td class="STYLE1"><input type="radio" name="null" value="null"> null <input type="radio" name="null" value="not null"> not null </td> </tr> <tr> <td height="30" align="right"> </td> <td><input type="submit" name="Submit" value="提交" /></td> </tr> <tr> <td height="20" align="right"> </td> <td> </td> </tr> </table> </form> </body> </html>
复制代码 conn.php:
- <?php $id=mysql_connect("localhost","root","mysql") or die('毗连
掉
败:' . mysql_error()); if(mysql_select_db("phpjcdb",$id)) //申明
:phpjcdb 是数据库称号
echo ""; else echo ('数据库选择掉
败:' . mysql_error()); mysql_query("set names gb2312"); //设置为简体中文 ?>
复制代码 index_ok.php:
- <?php session_start(); include("conn.php"); if($_POST['Submit']==true){ $null=$_POST[null]; $table = $_POST['table']; $field = $_POST['field']; $type = $_POST['type']; $length = $_POST['length']; $mysql=mysql_query("alter table $table add $field $type($length) $null"); echo mysql_error(); if($mysql==true){ echo "字段添加胜利
!"; }else{echo "添加掉
败!";} } ?>
复制代码 当然你可以把你最基本的功能放出来的时候就放出来,比如放到论坛上,让大家都参与, |
|