php error

lkbux

Member
Sep 23, 2015
17
3
0
machan danna kenek meke mokakda thiyena aula kiyapanko

me error eka enawa

<?php
/**
* Connect to mysql server
* @param bool
* @use true to connect false to close
*/
function dbConnect($close=true){

if (!$close) {
mysql_close($link);
return true;
}

$link = mysqli_connect('hostname','root','','download');
if (!$link) {
die('Could not connect to MySQL: ' . mysqli_error($link));
}
echo 'Connection OK'; mysqli_close($link);
?>
 

lkbux

Member
Sep 23, 2015
17
3
0
den error eka meka ( ! ) Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\wamp\www\download\function.php on line 14

menna code eka

<?php
/**
* Connect to mysql server
* @param bool
* @use true to connect false to close
*/
function dbConnect($close=true){

if (!$close) {
mysql_close($link);
return true;
}

$link = mysql_connect('localhost', 'root', '') or die('Could not connect to MySQL DB ') . mysql_error();
if (!mysql_select_db('download', $link))
return false;
}
?>


:(:(