The operations-related data of FlyHigh Airlines is stored in a central database. The software
fails to respond to user inputs, if there is a connectivity problem with the database. Add the code
snippet that the development team should use to ensure that the application shows a userfriendly
message,
1
Expert's answer
2014-05-01T11:48:09-0400
<?php$link = mysql_connect("hostName", "mysql_user", "mysql_password") ordie("Sorry, the service is not available now! Please keep calm and tryagain later! More information on www.moreinfo.com");mysql_close($link);?>
Comments