|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-09-20 03:44 UTC] joe at kybert dot com
Description: ------------ Try this: in a web page, include a file using this <?php // or what ever addy you feel fit (the included page can be empty) $open = "/pages/extras.inc.php"; require_once($open); $echo "hello world!"; ?> i never get to see the "hello world" message.... works fine in PHP4.3.0, not in 4.3.2 joe # Expected result: ---------------- hello world! should be displayed Actual result: -------------- blank page PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 00:00:01 2025 UTC |
There is no bug here. Try adding 'error_reporting(E_ALL);' as first line in your script and you'll propably find out why it fails. And possibly ini_set('display_errors',1); too.