Posts

Showing posts from February, 2019

How to send form data to database with the help of PHP and SQL

<?php  include"config.php"; if (isset($_POST ["submit"])) { $sql="insert into book_party(name,email,phone,date, message) values('".$_POST['name']."','".$_POST['email']."','".$_POST['phone']."','".$_POST['date']."' ,'".$_POST['message']."')"; mysql_query($sql); echo $thanks="<font color='blue' size='5'>Thanks For Contactign us, We Will call you Shortly.</font>"; } ?> <form class="" method="post"  action="index.php"  ><br> <input type="text" name="name"  id="name" Placeholder="Name" required   /> <br> <input type="text" name="email"  id="email" Placeholder="Email" required   /><br> ...