i m working on php, so while running code.. i m getting these errors
Notice: Undefined index: re_cnbid in C:\xampp\htdocs\cnb\DB_UserData.php on line 16
Notice: Undefined variable: flag in C:\xampp\htdocs\cnb\DB_UserData.php on line 26 null
<?php
$host='localhost';
$uname='root';
$pwd='';
$db="cnb";
$con = mysql_connect($host,$uname,$pwd) or die("connection failed");
mysql_select_db($db,$con) or die("db selection failed");
$recnbid = $_REQUEST['re_cnbid'];
$r=mysql_query("select * from header where re_cndid = '$recnbid' order by dt desc",$con);
while($row=mysql_fetch_array($r))
{
$flag[]=$row;
}
print(json_encode($flag));
mysql_close($con);
?>