gpt4 book ai didi

php - 将数据库中的值添加到预填写表单中

转载 作者:行者123 更新时间:2023-11-29 17:33:58 26 4
gpt4 key购买 nike

{{Form::label('listing', 'Price:')}}
{{Form::text('price','' , ['class' => 'form-control', 'placeholder' => 'Price'])}}

我想在表单中预先填写值 {{listing->price}}来自数据库

{{Form::label('listing', 'Price:')}}
{{Form::text('price','{{listing->price}}' , ['class' => 'form-control', 'placeholder' => 'Price'])}}

ERROR: Parse error: syntax error, unexpected '}', expecting ',' or ')'

这是一个好的解决方案吗?设置变量并解析它

$f = ($listing->price);
echo('{{Form::text('price',.$f. , ['class' => 'form-control', 'placeholder' => 'Price'])}}')

最佳答案

转义你的引号:

    echo '{{Form::text(\'price\','.$f.' , [\'class\' => \'form-control\', \'placeholder\' => \'Price\'])}}';

关于php - 将数据库中的值添加到预填写表单中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50439724/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com