This question already has an answer here:
- Class 'mysqli_connect' not found 2 answers
hi could someone assist me in this issue.
this is my connection string:
<?php
#FileName = "Connection_php_mysql.htm"
#Type = "MYSQL"
#HTTP = "true"
$hostname_Main_DB = "localhost";
$database_Main_DB = "mydb";
$username_Main_DB = "root";
$password_Main_DB = "";
$con = new mysqli_connect($hostname_Main_DB,$username_Main_DB. $password_Main_DB, $database_Main_DB) or die ( "Failed to connect to MySQL: " . mysqli_connect_errno()); $db=mysqli_select_db($database_Main_DB,$con) or die( "Failed to connect to MySQL: " . mysqli_connect_errno());
?>
I have installed wamp
server and mysqli
extension is enabled.
hope you will be able to help me with this issue,
Tnx, Yotam