js_bbs.php (placed in the root directory Next) Content js_bbs.php (placed in the root directory Next) Content

Home >Backend Development >PHP Tutorial >discuz! The Discuz forum post written by Haihe calls the php code of js

discuz! The Discuz forum post written by Haihe calls the php code of js

WBOY
WBOYOriginal
2016-07-29 08:37:051261browse

Calling code

js_bbs.php (placed in the root directory) Content
require (" bbs/config.inc.php");
//Connect, select database
$link = mysql_connect( $dbhost,$dbuser,$dbpw) or die('Could not connect:'.mysql_error());
mysql_select_db( $dbname) or die("Could not elect database");
$fid=$_GET["fid"];
//Truncate the character length
$length=36;
//Prevent Chinese garbled characters
mysql_query("set names 'gb2312'");
//Execute SQL query
$query = "SELECT tid,subject FROM cdb_threads where fid='$fid' order by lastpost desc LIMIT 10";
$result = mysql_query($query) or die( "Query failed: ".mysql_error());
// Display the results in HTML
while ($myrow = mysql_fetch_row($result))
{
printf("document.writeln("

  • %s
  • ");n", $myrow[0], cutstr($myrow[1], $length,".."));
    }
    // Release the result set
    mysql_free_result($result);
    //Close the connection
    mysql_close($link);
    //Intercept characters Function
    function cutstr($string, $length, $dot = ' ...') {
    $strcut = '';
    for($i = 0; $i < $length - strlen($dot) - 1 ; $i++) {
    $strcut .= ord($string[$i]) > 127 ? $string[$i].$string[++$i] : $string[$i];
    }
    return $strcut.$dot;
    }
    ?>

    The above introduces discuz! The Discuz forum post written by Haihe calls the php code of js, including the content of discuz!. I hope it will be helpful to friends who are interested in PHP tutorials.

    Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn