-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsubscribe.php
More file actions
37 lines (34 loc) · 789 Bytes
/
subscribe.php
File metadata and controls
37 lines (34 loc) · 789 Bytes
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
<html>
<head>
<title> Subscribe </title>
</head>
<body>
<?php
if(isset($_POST['subscribe_mail']))
{
$email=$_POST['subscribe_mail'];
$db=new PDO("mysql:host=localhost;dbname=techon","root","");
if($db)
{
$sql = "INSERT INTO
subscribe(subscribe_mail)
VALUES(?)";
$test=$db->prepare($sql);
$test->bindParam(1,$email);
if($test->execute())
{
header("location:index.php");
}
else
{
echo "error";
}
}
else
echo "error";
}
else
echo "error";
?>
</body>
</html>