New 1

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<?

php
function OpenCon()
{
$dbhost = "localhost";
$dbuser = "root";
$dbpass = "";
$db = "nicu";
$conn = mysqli_connect($dbhost, $dbuser, $dbpass,$db) ;

return $conn;
}
$conn = OpenCon();
echo "Connected Successfully <br/>";

$nume=$_POST["name"];
$lname=$_POST['lname'];
$email=$_POST['email'];
$country=$_POST['country'];
$date=$_POST['date'];
$tele=$_POST['tele'];
$subject=$_POST['subject'];
$i="INSERT INTO formular ( Nume, Prenume, Email, Country,Date,Tele, Subject)
VALUES ('$name','$lname','$email','$country','date','tele','subject')";

// $p=mysql_query($i); mysqli_query($conn,$i)

if( $conn->query($i)===true) {
echo "a mers";
}
else echo "error".mysqli_error($conn);

CloseCon($conn);
function CloseCon($conn)
{
$conn -> close();
}

?>

You might also like