Forum Moderators: coopster
I am quit new to PHP but find it quit interesting.What i would like to find out is who(if possible) PHP can be used to create progra with a Graphical Layout, a layout like the one that HTML Editors have.
Please advice.
And on using the die() function when trying to get a message incase you get an error connecting to a database, is there a way header function can be used?
Thank You.
Saboi
What i would like to find out is who(if possible) PHP can be used to create progra with a Graphical Layout
Do you mean an interactive, Web 2.0, style web page, or a local application?
is there a way header function can be used?
If you mean, to send a more appropriate response code, then yes you could, something like:
header("HTTP/1.0 500 Internal Server Error");
die(mysql_error());
Andrew