conn

    技术2025-07-18  7

    <?php

     

    /*

     * PHP100Job v1.0

     * Programmer : Msn/QQ haowubai@hotmail.com (925939)

     * www.php100.com Develop a project PHP - MySQL - Apache

     * Window 2003 - Preferences - PHPeclipse - PHP - Code Templates

     */

     

    $conn = @ mysql_connect("localhost", "root", "") or die("数据库链接错误");

    mysql_select_db("bbs", $conn);

    mysql_query("set names 'GBK'"); //使用GBK中文编码;

     

    function htmtocode($content) {

    $content = str_replace("/n", "<br>", str_replace(" ", "&nbsp;", $content));

    return $content;

    }

     

    //$content=str_replace("'","‘",$content);

     //htmlspecialchars();

     

     

     

    ?>

    最新回复(0)