-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreg.php
25 lines (23 loc) · 1.1 KB
/
reg.php
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
<?php
session_start();
$regno=isset($_POST['regno'])?htmlspecialchars($_POST['regno']):0;
$branch=isset($_POST['branch'])?htmlspecialchars($_POST['branch']):0;
$rollno=isset($_POST['rollno'])?htmlspecialchars( $_POST['rollno']):0;
$name=isset($_POST['name'])?htmlspecialchars($_POST['name']):0;
$phone=isset($_POST['phone'])?htmlspecialchars($_POST['phone']):0;
$email=isset($_POST['email'])?htmlspecialchars($_POST['email']):0;
$pass=isset($_POST['password'])?htmlspecialchars($_POST['password']):0;
$request=0;
require 'connection.php';
if($stmt=$conn->prepare(' insert into students (regno,branch,rollno,name,phone,email,pass,request) values (?,?,?,?,?,?,?,?)')){
$stmt->bind_param("isssissi",$regno,$branch,$rollno,$name,$phone,$email,$pass,$request);
if(!($stmt->execute())){
echo "Execution failed:" . $stmt->error;
die();
}
else{
echo "Successfully lodged Registration Request; Use Login form from next time";
die();
}
}
?>