Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   Is this right? (http://www.bvlist.com/showthread.php?t=11684)

BamBam0077 9th July 2018 07:36

Is this right?
 
Code:

$con = mysqli_connect("localhost", "root", "");
// if statement with connection failed
 if (!$con) {
  die("Could not connect: " . mysql_error());
 }
 return $con;

$sql = 'SELECT * FROM config';
$result = sql_query($dbcon, $sql);
while($row = mysqli_fetch_assoc($result)){

$tbdev["sitename"] = $row["sitename"];
}
?>


joeroberts 9th July 2018 11:53

no $dbcon needs to be $con
$result = sql_query($dbcon, $sql);


All times are GMT +2. The time now is 10:00.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.