Je lepší vytvořit funkci pro zobrazování chyb:
function show_error($error_text){
$var = '<div class="ui-widget">
<div class="ui-state-highlight ui-corner-all" style="margin-top: 20px; padding: 0 .7em;">
<p><span class="ui-icon ui-icon-info" style="float: left; margin-right: .3em;"></span>
<strong>'.$error_text.'</strong></p>
</div>
</div>';
die($var);
}
a poté jej použijte takto:
mysql_query($query) or show_error('Query execute failed');