如何在function.php文件-wordpress

时间:2018-07-17 09:50:06

标签: javascript php html sql wordpress

我正在WordPress网站上工作。我在shordcode中建立sqli连接时遇到问题,因此它有时无法显示空白页面,并且有时会破坏我的网站样式。

这是我在function.php文件的短代码中使用的conn代码:

<?php
$options = "select * from options";//select query for viewing users.  
$run=mysqli_query($conn,$options);//here run the sql query.  

while($row=mysqli_fetch_array($run))//while look to fetch the result and store in a array $row.  
{  
    $percent = $row[1] ."%";
    $percent2 = $row[2] ."%";
    $percent3 = $row[3] ."%";
?>

当我添加该代码时,它显示如下:

enter image description here

当我将其删除时,它会显示空白页。

0 个答案:

没有答案