So I downloaded WAMP and i found out that mysql is deprecated, so I wondered if there is anything else that I need to downlaod for WAMP in order of the mysql to work or should I just leave it as it is and dont worry bout it? Not a pro programmer!
After that I ran this code it showed that im connected:
<?php
$conn = mysqli_connect('localhost','root','');
if(!$conn){
die('Not connected');
}else {
echo 'Connected';
}
?>