in regards to failing 'ungracefully':
//databasescript.php
$host=cleanAndValidate($_POST["host"]);
$user=cleanAndValidate($_POST["user"]);
$pass=cleanAndValidate($_POST["pass"]);
mysql_connect($host, $user, $pass) or die("Some of your database credentials must be wrong.");
//javascript.js
$.ajax({
url: "databasescript.php",
cache: false,
type: "POST",
data: {
host: host,
user: user,
pass: pass
},
success: function(data){
if(data=="Some of your database credentials must be wrong."){
{
alert("Uh-oh; it looks like there was a problem:\n" + data);
}
}
});
obviously as a simple proof of concept.
no? (don't say something about not degrading in browsers w/o js. if you have a computer today, it should have js enabled.)