gpt4 book ai didi

php - 如何使用外键将值保存到数据库

转载 作者:行者123 更新时间:2023-11-29 16:24:46 24 4
gpt4 key购买 nike

我有问题!我不知道如何使用外键将值保存在数据库中。我需要简单的解决方案!我在国家表上的外键引用!

public function create(Request $request){

$brand = new BrandCar();
$brand->name = $request->get('brand');
$brand->country_id = $request->get('country_id'); // This is foreign key
$brand->save();
}

最佳答案

不确定您的表示层(后台,否则存在安全问题?)是如何设置的。但如果 Country_id 在特定 View 上是静态的,您可以使用隐藏的表单变量:

<input type="hidden" name="country_id" value="3">

关于php - 如何使用外键将值保存到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54288952/

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