设为首页   加入最爱           最新更新:全方位英文文章资料库
 
资料坊搜索: 标题 全文     
一个系统中的新闻增加程序
   首页>>YesizeCOM>>电脑技能坊>>PHP>>正文       
 
广告招租,e-mail:yesize@hotmail.com

广告招租,e-mail:yesize@hotmail.com


<?php
/*******所用到的表结构********
DROP TABLE IF EXISTS index_news;
CREATE TABLE index_news (
   news_id bigint(20) NOT NULL auto_increment,
   news_date date DEFAULT 0000-00-00 NOT NULL,
   news_title varchar(100) NOT NULL,
   news_content text,
   news_link varchar(100),
   is_new char(1) DEFAULT 1,
   picture_id int(11),
   picture_side char(1) DEFAULT 1,
   news_show char(1) DEFAULT 1,
   PRIMARY KEY (news_id),
   KEY id (news_id)
);
DROP TABLE IF EXISTS picture;
CREATE TABLE picture (
   id int(11) NOT NULL auto_increment,
   picture blob NOT NULL,
   picture_type varchar(50) NOT NULL,
   PRIMARY KEY (id),
   UNIQUE id (id)
);
**********************/
require("../include/date.inc.php3");
require("../include/config.inc.php3");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<title>修改首页新闻信息</title>
<script language="JavaScript">
<!--
function MM_findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

function MM_validateForm() { //v3.0
  var i,p,q,nm,test,num,min,max,errors=,args=MM_validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; obj_name=args[i+1]; val=MM_findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="") {
      if (test.indexOf(isEmail)!=-1) { p=val.indexOf(@);
        if (p<1 || p==(val.length-1)) errors+=- +obj_name+ 必须是一个E-Mail地址.\n;
      } else if (test!=R) { num = parseFloat(val);
        if (val!=+num) errors+=- +obj_name+ 必须是一个数字.\n;
        if (test.indexOf(inRange) != -1) { p=test.indexOf(:);
          min=test.substring(8,p); max=test.substring(p+1);
          if (num<min || max<num) errors+=- +obj_name+ 必须是一个在 +min+ 和 +max+之间的数字.\n;
    } } } else if (test.charAt(0) == R) errors += - +obj_name+ 必须输入.\n; }
  } if (errors) alert(输入数据存在错误:\n+errors);
  document.MM_returnValue = (errors == );
}
//-->
</script>
</head>

<body>
<?php
if ($add){
    $date=input2date($news_date);
    //echo $picture . "  ". filesize($picture);
    //if ($is_new!="0") $is_new="1" ;
    //if ($news_show!="0") $news_show="1";
    //if ($picture_side!="2") $picture_side="1";
    if ($picture!="none"){
        $pic_data = addslashes(fread($fp=fopen($picture,"r"), filesize($picture)));
        $i_str="insert into picture (picture,picture_type) values ($pic_data,$picture_type)";
        //$rs->open($i_str);
        $result=mysql_query($i_str,$dbconnect);
        $picture_id=mysql_insert_id();
        fclose($fp);
        unlink($picture);
    }
    else{
        $picture_id=0 ;
    }
    $i_str="insert into index_news (news_date,news_title,news_content,news_link,picture_id,is_new,picture_side,news_show) values ";
    $i_str.="($date,$news_title,$news_content,$news_link,$picture_id,$is_new,$picture_side,$news_show) ";

    if (mysql_query($i_str,$dbconnect)) echo "已添加!";

}

<form name="F" enctype="multipart/form-data" method="post" action="<?php echo $PATH_INFO; ?>" >
  <table width="500" border="0" cellspacing="0" cellpadding="0" align="center">
    <tr>
      <td colspan="2">
        <div align="center"><font size="4">增加新闻信息</font></div>
      </td>
    </tr>
    <tr>
      <td colspan="2">  </td>
    </tr>
    <tr>
      <td width="100">新闻标题: </td>
      <td>
        <input type="text" name="news_title" size="60">
      </td>
    </tr>
    <tr>
      <td>新闻内容:</td>
      <td>
        <textarea name="news_content" cols="58" rows="5"></textarea>
      </td>
    </tr>
    <tr>
      <td>新闻日期:</td>
      <td>
        <input type="text" name="news_date">
        (日期请按照2000-01-02格式输入) </td>
    </tr>
    <tr>
      <td>新闻链接:</td>
      <td>
        <input type="text" name="news_link" size="60">
      </td>
    </tr>
    <tr>
      <td>是否最新:</td>
      <td>
        <select name="is_new">
          <option value="1" selected>是最新</option>
          <option value="0">不是最新</option>
        </select>
      </td>
    </tr>
    <tr>
      <td>新闻图片:</td>
      <td>
        <input type="file" name="picture" size="50">
      </td>
    </tr>
    <tr>
      <td>图片位置:</td>
      <td>
        <select name="picture_side">
          <option value="1" selected>左边</option>
          <option value="2">右边</option>
        </select>
      </td>
    </tr>
    <tr>
      <td>是否显示:</td>
      <td>
        <select name="news_show">
          <option value="1" selected>显示</option>
          <option value="0">不显示</option>
        </select>
      </td>
    </tr>
    <tr>
      <td colspan="2">
        <div align="center">
          <input type="submit" name="add" value="增加" onClick="MM_validateForm(news_title,,R,news_date,,R,news_content,,R);return document.MM_returnValue">
          <input type="button" name="return" value="返回">
          <input type="reset" name="reset" value="重新输入">
        </div>
      </td>
    </tr>
  </table>
  </form>
</body>
</html>


上一篇:让显示内容栏的滚动条一直在下面 下一篇:正则表达式判断email和URL

版权说明:作品来源于网上,版权归作者所有,如果无意中侵犯了您的版权,请来信告知,本站将在3个工作日内删除。yesize@hotmail.com
  热门小游戏分类 
射击小游戏 连连看小游戏
台球小游戏 成人小游戏
CS小游戏 化妆小游戏
赛车小游戏 休闲小游戏
篮球小游戏 换装小游戏
儿童小游戏 牛牛小游戏
麻将小游戏 冒险小游戏
美媚小游戏 益智小游戏
体育小游戏  
Society Recreation & Sports
Travel & Leisure Communications
Vehicles Computers
Fashion Arts & Entertainment
Reference & Education Disease & Illness
Writing & Speaking Politics
Product Reviews Food & Beverage
Finance Internet Business
Self Improvement Home & Family
Health & Fitness Business
最新更新内容
警惕“公务员报考热”背
公务员考试不是丈母娘考
一名新公务员的自白:我
公务员考脑筋急转弯与挂
北努斗:2006行政能力测
大讨论:06行测BT题目大
过来人回忆:当年,我也
一家之言:公务员热折射
公务员考试申论要是有正
数十万大学生走进公务员
      粤ICP备05005424         Copyright ©2000 - 2004 Yesize.COM