Jump to content

Errors not giving, just show me blank page.


unnat93

Recommended Posts

Hello,
i just install LAMP server.
wrote simple code

<?php
    #error_reporting(E_ALL);
    #printf "hello";
    print "print_keyword.";
?>

but in browser, it does not show me an error.

i m using linux envionment.

 

plz help.

 

any help would be appriciable.

Link to comment
Share on other sites

Assuming that you are browsing a file/page/script with a ".PHP" extension, you could try turning on php error reporting (which you have partially commented out in your example:

 

error_reporting(E_ALL | E_NOTICE);
ini_set('display_errors', '1');

 

Add that after your  php tag.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.