douai2499 2017-09-27 14:04 采纳率: 100%
浏览 5
已采纳

在我的HTML中,我使用PHP调用的MySQL条目只带来第一个字

I have looked at other threads for this, but they all talk about when you're echoing the data from within the PHP area of the code, I'm trying to do it through the HTML area.

It currently brings only the first word of the target, how can I get all words?

I have tried the extra quotes technique, it doesn't work for me.

<strong>Sales Rep : </strong> <input type="text" name="user_name" value=<?php echo $u_name; ?> /><br/>
  • 写回答

1条回答 默认 最新

  • douhu4091 2017-09-27 14:09
    关注

    Did you look at the HTML output?

    Using your code:

    $u_name = 'John Doe';
    <input type="text" name="user_name" value=<?php echo $u_name; ?> /><br/>
    

    Will output:

    <input type="text" name="user_name" value=John doe />

    To make the browser show the full name it should be:

    <input type="text" name="user_name" value="John Doe" />
    

    Note the added quotes (") surrounding the name.

    So your PHP should be:

    $u_name = 'John Doe';
    <input type="text" name="user_name" value="<?php echo $u_name; ?>" /><br/>
    

    Will output :

    <input type="text" name="user_name" value="John doe" /><br/>

    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效