πŸš€ DevOps & SRE Certification Program πŸ“… Starting: 1st of Every Month 🀝 +91 8409492687 πŸ” Contact@DevOpsSchool.com

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

Insert Data in Database using Html Form in laravel.

First, we create a simple HTML form to Fill data. See the below code:-

@if($errors->any()) /* This
@foreach($errors->all() as $error) area is
{{ $error }}<br> to print
@endforeach message in
@endif the form */
<form method="post" action="submitmyform">
{{ csrf_field()}} // csrf token
<p>
<label>Name</label>
<input type="text" name="name" value="{{ old("name")}}"/>
</p>
<p>
<label>Email</label>
<input type="text" name="email" value="{{ old("email")}}"/>
</p>
<p>
<label>Age</label>
<input type="text" name="age" value="{{ old("age")}}"/>
</p>
<p>
<input type="submit" name="Submit">
</p>
</form>

Now, we make a controller in which we make two functions, the first one is for fill form and the second one is to submit the form. See the below code:-

// myform Function Starts
public function myform()
{
return view("form.myform");
}
// submitmyform Function Starts
public function submitmyform(Request $request)
{
// validation starts
$this->validate($request,[
"name"=>"required",
"email"=>"required|email|min:8|",
"age"=>"required"
],[
"name.required"=>"Name Should be filled",
"email.min"=>" Email length should be more than 8",
"email.email"=>"Enter a Valid E-mail"
]);
// validation ends
//Database insertion code starts
$name = $request->input('name');
$email = $request->input('email');
$age = $request->input('age');
$data=array('name'=>$name,"email"=>$email,"age"=>$age);
DB::table('student_datas')->insert($data);
//Database insertion code ends
die("Form Submitted");
}

Now configure the route and run the code.

Now, see the output below:-

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.