is it possible?
I want to embed MySQL in my project.
$path = str_replace('www','',getcwd());
system('"'.$path.'mysql\bin\mysqld.exe');
$mysqli = new mysqli("localhost","root","","mix_pos");
// Create connection
if ($mysqli->connect_errno) {
echo "Failed to connect to MySQL: " . $mysqli->connect_error;
exit();
}
echo "Connected successfully";