当前位置: 首页 > 图文教程 > 网络编程 > PHP > 一个个人网页自动化生成系统(2)

PHP
PHP删除MYSQL数据库中所有表的代码
php教程:php设计模式介绍之注册模式
php教程:php设计模式介绍之伪对象模式
PHPnow轻松打造专业PHP服务器环境
php教程:php设计模式介绍之策略模式
php教程:php设计模式介绍之迭代器模式
Windows环境下Apache与Tomcat共存
简单学习php遇到的主要问题
php教程:php设计模式介绍之观测模式
php教程:php设计模式介绍之规范模式
php教程:php设计模式介绍之代理模式
php教程:php设计模式介绍之装饰器模式
Perl操作mysql数据库的方法
php教程:php设计模式介绍之适配器模式
PHP单件模式和命令链模式的基础知识
PHP大师指点:优秀的PHP代码怎么来?
PHP开发的Myers 订单跟踪系统 (MOTS)
PHP控制网页过期时间的程序
Cannot modify header information出错的原因
PHP 5.3的date_create_from_format()函数

PHP 中的 一个个人网页自动化生成系统(2)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 92 ::
收藏到网摘: n/a

  单页递交。文件名:input.php
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body bgcolor="#FFFFFF" background="image/b-graingr1.jpg">
<form method="post" action="shengcheng.php">
  <table width="750" border="1" align="center">
    <tr>  
      <td width="53">标题:</td>
      <td colspan="3">  
        <input type="text" name="timu" size="50">
      </td>
    </tr>
    <tr>  
      <td width="53" height="28">作者:</td>
      <td width="154" height="28">  
        <input type="text" name="zuozhe" size="20">
      </td>
      <td width="59" height="28">来源:</td>
      <td width="456" height="28">  
        <input type="text" name="laiyuan" size="30">
      </td>
    </tr>
    <tr>  
      <td width="53">正文:</td>
      <td colspan="3">  
        <textarea name="textt" cols="90" rows="20"></textarea>
      </td>
    </tr>
    <tr>
      <td width="53">&nbsp;</td>
      <td colspan="3">
        <input type="submit" name="Submit" value="递    交">
        <input type="reset" name="Submit2" value="复     位">
      </td>
    </tr>
  </table>
</form>
</body>
</html>


【本文版权归作者time2与奥索网共同拥有,如需转载,请注明作者及出处】