After i knew how to import my database to phpMyAdmin and how to upload php files to file manager i wanna know how to get my host name to insert and delete from database in phpMyAdmin
<?php $json =file_get_contents('php://input');
$con = mysqli_connect("hostname","username","password");
if (!$con) {
die("Connection failed: " . mysqli_connect_error());
}else{
mysql_select_db('royal_sharm_property', $con); }
$sql = "SET character_set_results = 'utf8', character_set_client = 'utf8', character_set_connection = 'utf8', character_set_database = 'utf8', character_set_server = 'utf8'";
mysqli_query($con, $sql) ;
$data = json_decode($json,true); ?>
Now, how can i get my host name?
Note: i don't have website, i have android app only