-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsers.php
More file actions
128 lines (102 loc) · 3.15 KB
/
Copy pathUsers.php
File metadata and controls
128 lines (102 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Routing\RouteCollection;
use App\Form;
use App\studentdetail;
use DB;
class Users extends Controller
{
public function dologin()
{
return view('');
}
public function insert(Request $req)
{
$req->validate([
'email'=>"required",
'password'=>"min:5 | max:8"
]);
$req->session()->flash('register','Yor are successfully Registered!');
$temp = new Form;
$temp->name=$req->name;
$temp->email=$req->email;
$temp->address=$req->address;
$temp->password=$req->password;
$temp->save();
return redirect('/studenthome');
}
function match(Request $req)
{
$temp = new Form;
$email=$req->email;
$pass=$req->password;
//select * from users where(['email'=>$email,'password'=>$pass])->get();
$data=DB::table('users')->where(['email'=>$email,'password'=>$pass])->get();
if(count($data) >0)
{
$req->session()->flash('data',"You are successfully login!");
return redirect('/studenthome');
}
else
{
echo "You have entered wrong email id or password!";
}
}
function stusubmit(Request $req)
{
$temp = new studentdetail;
$temp->name =$req->name;
$temp->rollno =$req->rollno;
$temp->email =$req->email;
$temp->class =$req->class;
$temp->address =$req->address;
request()->validate([
'image' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048',
]);
if ($files = $req->file('image')) {
$destinationPath = 'public/image/';
$profileImage ="$req->name".'.'.$files->getClientOriginalExtension();
$files->move($destinationPath, $profileImage);
}/*
return Redirect::to("")
->withSuccess('Great! Image has been successfully uploaded.');
}*/$temp->image=$destinationPath.$profileImage ;
$check=$temp->save();
if($check > 0)
{
$req->session()->flash('detail','Student detail submitted successfully!');
return redirect('/studentdetailshow');
}
}
function editstudent(Request $req, $id)
{
$detail = studentdetail::where('id',$id)->first();
return view('studentdetailupdate', compact('detail'));
}
function updateStudentDetails(Request $req)
{
$id = $req->id;
$temp =studentdetail::find($id);
$temp->name=$req->name;
$temp->rollno=$req->rollno;
$temp->email=$req->email;
$temp->class=$req->class;
$temp->address=$req->address;
$check=$temp->save();
if($check > 0)
{
return redirect('/studentdetailshow');
}
}
function deleteStudentdetails(Request $req,$id)
{
$temp=studentdetail::find($id);
$check=$temp->delete();
if($check >0)
{
$req->session()->flash('detail','Student details deleted!');
return redirect('/studentdetailshow');
}
}
}