-
Notifications
You must be signed in to change notification settings - Fork 0
/
submitdonate.php
73 lines (32 loc) · 869 Bytes
/
submitdonate.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
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
<?php
session_start();
include('connection.php');
$name=trim($_POST['name']);
$email=trim($_POST['email']);
$address=trim($_POST['address']);
$phone=trim($_POST['phone']);
//lets do a conditon
$sqlfirst="SELECT * FROM `doners` WHERE `email`='$email'";
$res=$conn->query($sqlfirst);
if($res->num_rows > 0)
{
$row=$res->fetch_assoc();
$id=$row['id'];
echo "<script> donorid= $id</script>";
echo "Data Alearady exist";
}
else{
$sql="INSERT INTO `doners` (`fullname`,`email`,`phone`,`address`) VALUES ('$name','$email','$phone','$address')";
$result=$conn->query($sql);
if($result=== true){
$newId=$conn->insert_id;
//$_SESSION['newId']=$newId;
echo "<script> donorid=$newId </script>";
echo "data submited successfluly";
}
else{
echo "Erorr".$sql."<br>".$conn->error;
}
}
$conn->close();
?>