HTML格式的双引号(PHP)

时间:2016-10-16 12:51:01

标签: php html

我有以下代码:

<input type="text" name="firstName" id="firstName" value=" <?php setValue( "firstName" ) ?> " />

问题是,value属性作为输入字段的值到达第一个引用<?php setValue(。怎么处理呢?

3 个答案:

答案 0 :(得分:1)

尝试concat:

<input type="text" value="' . <?php setValue('firstName') ?> . '"/>

答案 1 :(得分:1)

你可以这样使用回声

<?php echo  '<input type="text" name="firstName" id="firstName" value="'.  
                 setValue( "firstName" ). '" />' ; ?>

答案 2 :(得分:0)

我认为您的数据是按函数setValue返回firstName值或其他值。你必须回应你的价值

<input type="text" name="firstName" id="firstName" value=" <?php echo setValue( "firstName" ) ?> " />

你的代码是正确的。比使用

<?php echo  '<input type="text" name="firstName" id="firstName" value="'.  
             setValue( "firstName" ). '" />';  ?>