这里我有代码,其中php
回应了关注者的数量,结果显示在追随者包裹在h2
标签下但在行的开头,即在Fo下,我只是想在关注者的中心显示数字,将 
添加到echo mysqli_num_rows($resultfollowers);
可以完成工作,但是他们可以选择任意一个单词,而不是键入多个 
<h2>Followers</h2>
<?php
$checkfollowers = "SELECT * FROM follow_user WHERE user_id='$user_id'";
$resultfollowers = mysqli_query($con,$checkfollowers);
echo mysqli_num_rows($resultfollowers);
?>
答案 0 :(得分:1)
是。使用CSS设置容器的宽度,并使用text-align: center;
将文本居中。
视觉呈现与MySQL或PHP无关。
内联样式示例:
echo sprintf( '<p style="width: 20em; text-align:center;">%s</p>', $resultfollowers );