Suppose my php file is and it is hosted online how to get the value of stored in $mysql?
<?php
    $mysql= new mysqli("localhost","root","","hello",3306);
    if ($mysql->connect_error) {
        die("Connection failed: " . $mysql->connect_error);
    }
?>
 
    