I’ve been able to make the connection between the php and corona thanks to your help.
also I am working on the php script but there is 2 problems
1- How to ensure security that nobody could make any change to the database
2- How to return a certain value to send to corona.
here is the script until now
\<html\> \<body\> \<?php $username = "root"; $password = ""; $hostname = "localhost"; $familyNameQuery = $\_GET['familyNameQuery']; $dbhandle = mysqli\_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); echo "Connected to MySQL\<br\>"; $selected = mysqli\_select\_db($dbhandle, "regionfamilies") or die("Could not selected regionfamilies"); echo "Coneted to regionfamilies\<br\>", "\<br\>"; $familyNameQuery = mysqli\_real\_escape\_string($dbhandle, $familyNameQuery); $result = mysqli\_query($dbhandle, "SELECT familyName, familyMembers, membersInfo, lastVisit FROM familiesTable WHERE familyName='$familyNameQuery'") or die("Could not find ".$familyNameQuery.""); echo "Query Loading results...", "Query results lodead! ".mysqli\_num\_rows($result)." rows\<br\>"; while($row = mysqli\_fetch\_array($result)){ echo "\<b\>familyName: \</b\>".$row{'familyName'}." \<b\>familyMembers: \</b\>".$row{'familyMembers'}." \<b\>membersInfo: \</b\>".$row{'membersInfo'}." \<b\>lastVisit: \</b\>".$row{'lastVisit'}." \<b\>Done\</b\>\<br\>"; } mysqli\_close($dbhandle); ?\> \</body\> \</html\>