包含逗号(,) 的字符串未填充
我正在尝试显示包含逗号(,)的地址,但问题是在第一个逗号地址之后未填充。 我的代码-
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在
之前和
?>
之后添加引号:value=""
You need to put quotes before the
<?php
and after the?>
:value="<?php echo $Address; ?>"