使用php回显值

时间:2014-07-18 00:22:00

标签: php

需要回应< br />在使用dymo打印机的值中,它使用带有标记的值来格式化标签。但它似乎被视为标签而不是字符串。

"<input type=" . "button" . " " . "value=" . $firstname . "<br/>" ." ". $lastname ." ". "onclick=" . "printLabel(this.value)" . " " .
"id=" . "printLab" . ">";

所以它呈现如下:

value="jamie<br/>tipper"

1 个答案:

答案 0 :(得分:2)

<br/>$lastname变量之间有一个空格,导致代码溢出到屏幕中。

解决方法是将您的属性包装在引号中。

echo "<input type='button' value='$firstname<br/>$lastname' onclick='printLabel(this.value)' id='printLab'>";