gpt4 book ai didi

mysql - 在 Laravel 5.2 中如何从 html 表单获取输入并将其存储在数据库中?

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

有人可以一步一步解释一下吗?网上找到的视频和教程并不能清楚地理解该过程。

最佳答案

创建与数据表相关的模型类的对象例如://创建一个患者对象以向患者表中添加一行$患者=新患者();

指定值

    //assign relavant values related to a patient in patients table
$patient->user_id = $user->id;
$patient->firstName = $request['firstName'];
$patient->lastName = $request['lastName'];
$patient->gender = $request['gender'];
$patient->gender = 'male';
$patient->birthYear = $request['birthYear'];
$patient->telephoneNo = $request['contactNo'];
$patient->locale = $request['locale'];
$patient->bloodType = $request['bloodGroup'];

调用 save() 方法。

    //this will save a patient's record to the patients table
$patient->save();

关于mysql - 在 Laravel 5.2 中如何从 html 表单获取输入并将其存储在数据库中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37194251/

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