Connection in php
<?php
$conn=mysqli_connect("localhost","root","","newdata");
if(!$conn)
{
die("error in connecting ");
}
else
{
echo "successful in connecting ";
}
?>
Click to watch Video
<?php
$conn=mysqli_connect("localhost","root","","newdata");
if(!$conn)
{
die("error in connecting ");
}
else
{
echo "successful in connecting ";
}
?>
Click to watch Video
Comments
Post a Comment