[thelist] Screen Readers

Paul Bennett paul at teltest.com
Mon Oct 28 17:55:01 CST 2002


Be nice if IBM GAVE it away. (It's not like they can't afford it)
Browsers:
    People who CAN see = $free
    People who CAN'T see = $130
That sucks.
Anyway....
<tip type="php" author="Paul Bennett">
Coding any sort of web application?
If so you will need to check user data for errors, missed fields etc.
I used to output a whole HTML page and exit the script processing when I
discovered an error, however this can be accomplished a lot more
efficiently by redirecting to a "master" page where the bulk of  user
commands are entered and appending an error flag to the url:

Header("Location:page_name.php?error=1");

then having a simple check for error messages on the "master" page like so:
if($error)
    {
    switch($error)
        {
        case 1;
            echo "error 1 message here";
            break;
        case 2;
            echo "error 2 message here";
            break;
        // etc for all neccessary errors
        }
    }
</tip>

--
Paul Bennett
Internet Developer
Teltest Electronic Design
--------------------------
Phone : 64 4 237 0767
Web : http://www.teltest.com
Wap : http://wap.teltest.com
Email : paul at teltest.com
--------------------------






More information about the thelist mailing list