包含逗号(,) 的字符串未填充

发布于 2024-10-15 11:46:13 字数 360 浏览 2 评论 0原文

我正在尝试显示包含逗号(,)的地址,但问题是在第一个逗号地址之后未填充。 我的代码-

<td class="content"><input name="txtShippingAddress2" type="text" class="box" id="txtShippingAddress2" size="40" maxlength="100" 
        value=<?php echo $Address; ?> ></td>

我在 DB 中的地址 = '23 Awe, Charles street' 但它只显示“23 Awe”,如果我删除逗号,它将显示整个地址。 我该怎么办?

i am trying to display address that contains commas(,) but the problem is after first comma address in not populating.
my code-

<td class="content"><input name="txtShippingAddress2" type="text" class="box" id="txtShippingAddress2" size="40" maxlength="100" 
        value=<?php echo $Address; ?> ></td>

my address in DB = '23 Awe, Charls street'
but it is displaying only '23 Awe' if i remove comma it will display whole address.
what shoul i do?

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

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

发布评论

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

评论(1

两相知 2024-10-22 11:46:13

您需要在 之前和 ?> 之后添加引号:

value=""

You need to put quotes before the <?php and after the ?>:

value="<?php echo $Address; ?>"

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