Dear friends,
I am facining an other problem to in cloude a connetion file in PHP form.my code is below
<?php
include"conn.php";
if(isset($_POST['login'])){
$uname=$_post['username'];
$uname=$_post['password'];
$sql="SELECT * FROM login1 WHERE L1='$uname'";
$result=$conn->query("$sql");
if($result){
echo("welcome to new page");
} else {
echo ("login problem");
}
}
?>
can not continue connectoin .... and i cannt login ,please suggest me....