-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate2.php
80 lines (52 loc) · 1.42 KB
/
update2.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
74
75
76
77
78
79
80
<!Doctype HTML>
<html>
<head><title></title></head>
<?php
session_start();
?>
<?php
$u=$_SESSION['uname'];
$p=$_SESSION['pwd'];
echo $_SESSION['uname'];
echo $_SESSION['pwd'];
?>
<body>
<?php
// Connecting to Data Base
$mysqlport = getenv('S2G_MYSQL_PORT');
$dbhost = "localhost:".$mysqlport;
$dbuser = 'root';
$dbpass = '';
$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
$dbname = 'details';
mysql_select_db($dbname);
$fname=$_POST["fname"];
$lname=$_POST["lname"];
$age=$_POST["age"];
$gen=$_POST["gen"];
$mail=$_POST["mailid"];
$nmum=$_POST["mnum"];
$state=$_POST["state"];
$city=$_POST["city"];
$fav=$_POST["fav_food"];
$sql_update="UPDATE `user1` SET First_name='$fname' , Last_name='$lname' ,Age='$age',Gender='$gen',mailid='$mail',mobile='$nmum',state='$state',city='$city' where username='$u'";
mysql_query($sql_update,$conn);
if($fname == NULL OR $lname == NULL OR $age == NULL OR $gen == NULL OR $mail == NULL)
die('Please enter values for all the fields');
else
{
if (!mysql_query($sql_update,$conn))
{
die('Error: ' . mysql_error());
}
else
echo "Your Details updateted Successfully";
}
mysql_close($conn);
?>
<form name="form4" id="form4" action="profile.php" method="POST">
<input name="act" value="Back" type="submit" />
</form>
<br><br><br><br>
</body>
</html>