且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

查询未完全显示

更新时间:2023-01-16 07:43:32

如注释中所建议:

value=<?php echo $straat;?>>

由于值中的空白而中断。

breaks due to the whitespace in the value. Replacing this line with

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

(注意使用连字符)可以解决此问题。

(note the hyphens) solves the issue.