为什么php不打印字段文本类型的所有内容

发布于 2024-11-03 02:21:15 字数 933 浏览 3 评论 0 原文

我创建了一个 slq 表(postgres db),我想打印字段“notes”的所有值,但 php 仅打印该值的第一个单词。

$name=trim($_POST['name']);


//select


if(!$query = @pg_query($conn,"SELECT notes FROM customer WHERE customer.name = '$name' "))
die("Errore nella query: " . pg_last_error($conn));


//print the content of field 'notes'


while($row = pg_fetch_array($query))
{

echo "<li>Notes: <input type=\"text\" placeholder=\"insert text\" id=\"note\" value=".$row['note']."></li>";    

}

如果我的字段注释的值是 'lorem ipsum dixit'

php 仅打印 'lorem' 切断 'ipsum dixit'

为什么?


我找到了解决方案,我替换

echo "

  • Notes:
  • ";

  • 注意:
  • 谢谢大家

    I create a slq table (postgres db) and i want to print all value of the field 'notes' but php print only first word of this value.

    $name=trim($_POST['name']);
    
    
    //select
    
    
    if(!$query = @pg_query($conn,"SELECT notes FROM customer WHERE customer.name = '$name' "))
    die("Errore nella query: " . pg_last_error($conn));
    
    
    //print the content of field 'notes'
    
    
    while($row = pg_fetch_array($query))
    {
    
    echo "<li>Notes: <input type=\"text\" placeholder=\"insert text\" id=\"note\" value=".$row['note']."></li>";    
    
    }
    

    if the value of my field notes is 'lorem ipsum dixit'

    php print only 'lorem' cutting off 'ipsum dixit'

    Why?


    i find the solution, i replace

    echo "<li>Notes: <input type=\"text\" placeholder=\"insert text\" id=\"note\" value=".$row['note']."></li>";

    with

    <li>Note: <input type="text" placeholder="inserisci testo" id="note" value=" <?php echo $row['note'] ?>"></li>

    thank you everyone

    如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(4

    孤独陪着我 2024-11-10 02:21:15

    我还将 echo "$row['notes']"; 替换为 echo $row['notes'];

    i would also replace echo "$row['notes']"; by echo $row['notes'];

    魂归处 2024-11-10 02:21:15

    你得到的东西

     <input ... value=lorem ipsum>
    

    应该是这样的

     <input ... value="lorem ipsum">
    

    You get something like

     <input ... value=lorem ipsum>
    

    which should be

     <input ... value="lorem ipsum">
    
    花期渐远 2024-11-10 02:21:15

    顺便说一句,不需要引号,应该是 echo $row['notes'];

    BTW, there is no need of quotes, it should be echo $row['notes'];

    骷髅 2024-11-10 02:21:15

    因为您正在获取数组,而不是关联数组,所以尝试使用 mysql_fetch_assoc 函数,它应该为您提供您正在寻找的行为。

    Because you're fetching an array, not an associative array, try using the mysql_fetch_assoc function and it should give you the behavior you're looking for.

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文