zoukankan      html  css  js  c++  java
  • php面向对象

    <?php
    session_start();
    if(isset($_POST['submit3'])){
    $submit3 = $_POST['submit3'];
    $us = $_POST['zh'];
    echo$us ;
    }
    ?><br>
    主贴:呵呵呵呵呵呵呵呵呵呵呵呵呵呵呵
    <?php
    $wi=@$_POST["huifu"];
    $er = "<pre>$wi</pre>";
    echo $er;

    ?>
    <form action="lianxi3.php" method="post">
    <input type="submit" name="submit2" value="登录">
    </form>
    <?php
    if(isset($_POST['submit'])){
    $huifu = $_POST['huifu'];
    $conn = mysql_connect("localhost","root","") or die("链接数据库失败");
    mysql_select_db("xiangmu");
    mysql_query("set names 'utf8'");
    $sql = "INSERT INTO `huitie`(`id`, `huifren`, `huitie`, `fabiaohuifu`) VALUES (null,null,null,'$huifu')";

    mysql_query($sql);

    }
    ?>

    <form action="lianxi2.php" method="post">
    发表回复:
    <?php
    include("fckeditor/fckeditor.php") ;
    $oBasePath = $_SERVER['PHP_SELF'];
    $oBasePath = dirname($oBasePath)."/fckeditor/";

    $oFCKeditor = new FCKeditor('huifu') ;
    $oFCKeditor->BasePath = $oBasePath ;
    $oFCKeditor->Height = "500px";
    // $oFCKeditor->ToolbarSet = "Basic";
    $oFCKeditor->Create() ;
    ?>
    <input type="submit" name="submit" value="发表">

  • 相关阅读:
    深入理解Java Proxy机制
    StringBuilder与StringBuffer的区别
    反射
    list和set区别
    spring总结
    Hibernate与 MyBatis的比较
    手机拍照或选择照片上传html5代码
    JSP两种跳转
    离散化
    圆方树
  • 原文地址:https://www.cnblogs.com/wanger1994/p/3749450.html
Copyright © 2011-2022 走看看