|
Posted by Pedro Graca on 10/25/06 10:17
Edo wrote:
> I will try to program php/sql forum for the software engineering project at
> University.
> Can you tell me something useful about programming such thing as a forum, or
> give me some tips how to start, design patterns, links, source codes,
> books...? Anything will help...
Use
error_reporting(E_ALL);
ini_set('display_errors', '1');
at the very top of *all* your scripts, right after the first <?php tag.
When the script produces no warnings or notices, you won't even need to
remove those lines :)
--
I (almost) never check the dodgeit address.
If you *really* need to mail me, use the address in the Reply-To
header with a message in *plain* *text* *without* *attachments*.
[Back to original message]
|