Master:
# 1    Pls help me to remove Warning message with php page                  
Dude
Online no
State
Grouping Member
Class class4
Score 161
Wealth 125.5
Posts 116
Login 00:20:49
Currently my web site has strange Warning messages, I know it is a web server problem, so i just need to disable it.
Hits: 561, Date: 2010-04-21 02:03:38
[Agree] ( 8 ) [Against] ( 8 )

# 2    i found a way to do it                  
Dude
Online no
State
Grouping Member
Class class4
Score 161
Wealth 125.5
Posts 116
Login 00:20:49
error_reporting(E_ERROR | E_PARSE);
include this in top of php page.
Hits: 560, Date: 2010-04-21 02:15:18
[Agree] ( 10 ) [Against] ( 9 )

# 3    a complete code for remove warning message                  
Dude
Online no
State
Grouping Member
Class class4
Score 161
Wealth 125.5
Posts 116
Login 00:20:49
error_reporting(0);
error_reporting(E_ERROR | E_PARSE);

In this way, the page will only display runtime errors
Hits: 558, Date: 2010-04-21 02:46:35
[Agree] ( 8 ) [Against] ( 8 )

# 4    to display all error in some pages                  
Dude
Online no
State
Grouping Member
Class class4
Score 161
Wealth 125.5
Posts 116
Login 00:20:49
i use:

error_reporting(E_ALL);
Hits: 557, Date: 2010-04-21 02:47:43
[Agree] ( 8 ) [Against] ( 9 )

# 5    yes, make sure the setting is placed before other php codes                  
hans
Online no
State
Grouping Member
Class class4
Score 221
Wealth 155.5
Posts 156
Login 21:17:46
yes, make sure the setting is placed before other php codes
Hits: 555, Date: 2010-04-21 03:50:21
[Agree] ( 8 ) [Against] ( 9 )

1 - 5 [ 5]

Reply: Pls help me to remove Warning message with php page

*First line:


More content:


Tags:



Hint: You cannot post here before loginLogin | Register

nothing