$result = mysql_query('... query that produces duplicate key error ...');
if ($result === FALSE) {
if (mysql_errno() == 1022) {
die("Username already exists");
} else {
die(mysql_error());
}
}
त्रुटि कोड यहां प्रलेखित हैं:http:/ /dev.mysql.com/doc/refman//5.5/hi/error-messages-server.html और यदि आप चाहें तो 'अच्छे' त्रुटि संदेशों को आउटपुट करने के लिए आप अपना स्वयं का कस्टम त्रुटि हैंडलर लिख सकते हैं।