Hi,
Is their any way to reduce the error msg. output, so I will not see errors like:
“Notice: Undefined index: size2 in - on line 48
Notice: Undefined variable: name in - on line 240 “
Thanks.
if you use the @ operator it will suppress the output of the function :
$fd = @fopen(..............);
this will suppress the output of the function fopen..
hope this helps you..😃 J@ystick😃
Can I avoid using the @fopen(..............), and declare something in the HTTP server or in the ini files.
:rolleyes: