仅在php,mysql 中显示前50个字符

前端之家收集整理的这篇文章主要介绍了仅在php,mysql 中显示前50个字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参见英文答案 > How do you pull first 100 characters of a string in PHP                                    6个
我在数据库表,标题和描述中有两个字段.我在循环中显示PHP中的数据.

我的代码

$sql = "select * from sightseeing";
    $i = 1;
    $res = MysqL_query($sql,$conn); 
    if( MysqL_num_rows($res) > 0) {
        while($row = MysqL_fetch_array($res))
       {

        echo "

我想只显示描述字段中的前50个字符.怎么做?

最佳答案
试试这个

 $sql = "select * from sightseeing";
$i = 1;
$res = MysqL_query($sql,$conn); 
if( MysqL_num_rows($res) > 0) {
    while($row = MysqL_fetch_array($res))
{

echo "
原文链接:https://www.f2er.com/mysql/432835.html

猜你在找的MySQL相关文章