Posted: Mon Oct 27, 2003 6:40 pm
It's an internal dev server.
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
i hate the added crap dreamweaver puts there. have you thought about getting emacs or xemacs? (both have winblows ports)johnperkins21 wrote:Apparently I should just give up. Now I just get a blank page. I tried another php page in the same directory and it works fine (another image gallery that I d/l to get ideas). It is very strange.
For the record:
Server is Red Hat 8 running Apache 1.3.22 with PHP 4.3.2.
Using IE 6.0.2 locally to view and Dreamweaver to edit the files directly on the server (just switched to Wordpad though 10 minutes ago). Local machine running WinXP completely updated. If you guys have any ideas, I'd be happy to hear 'em.
Just wanting to state that my configuration does not show you any errors, as below snippet shows, when adding array val's without declaring the array per se.McGruff wrote:The max E_ALL error reporting level will report undefined vars - always develop with that.
Code: Select all
PHP Version: 4.3.4RC2-dev
Display Errors: 1
Error Level: E_ALL
Register Globals: Off
<?php
$array[] = '<pre>';
$array[] = 'PHP Version: '.phpversion()."\n";
$array[] = 'Display Errors: '.ini_get('display_errors')."\n";
$array[] = 'Error Level: '.(ini_get('error_reporting') == '2047' ? 'E_ALL' : 'Not E_ALL')."\n";
$array[] = 'Register Globals: '.(ini_get('register_globals') == '' ? 'Off' : 'On')."\n";
$array[] = '</pre>';
foreach ($array as $val) { echo $val; }
show_source(__FILE__);
?>