如何解决在PHP网页中打印为“ ...”的撇号/引号?

时间:2019-04-05 21:02:04

标签: php python mysql mysqli

我有一个聊天机器人,它从GroupMe聊天中创建了一个消息语料库,并使用Python 3中的Markovify模块生成了响应。我最近开始在宿舍之外运行LAMP堆栈,以便可以记录这些消息并进行存储在MySql数据库中,然后根据需要在大学wifi上显示这些人。

我最近的问题是,在python控制台程序中很好显示的问号和引号在网页上显示为“。”。这是index.php文件:

<html>  
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
<title> Hove and Lonor Database </title>
</head>

<body>

<div id="top_container">
  <h1 class="title">HOVE AND LONOR LIVE FEED Y'ALL</h1> 
   <h2><a href="/search/"> user lookup </a></h2>
</div>




<center>
<?php 
error_reporting(E_ALL);        
ini_set('display_errors', 1);
$conn = mysqli_connect('localhost', 'someuser', 'somepass');
mysqli_select_db($conn, 'groupme');

$query = "SELECT * FROM msgs";
$result = mysqli_query($conn, $query) or die (mysqli_error($con));

echo "<table>";

while($row = mysqli_fetch_array($result)) {
    echo"<tr><td>" . $row['date'] . "</td><td>" . $row['user'] . "</td><td>" . $row['msg'] . "</td></tr>";
}

echo "</table>";

mysqli_close($conn);

?>
</center>

0 个答案:

没有答案