Having a function defined in commons.php
desktop.php -> include commons.php
|
|
\|/
include MODULES.'mod.php'
I can call my custom function anywhere I want, but not inside an exit that's inside an if. The code where calling the function won't go:
Mod.php:
....
$error = mysql_error();
if($_ADM['id_user']==1) {
if(!empty($error)) {
$debug = array(
'message' => "SQL Error in infography_edit module.",
'line' => '79',
'error' => $error,
'SQL' => $SQL
);
//exit(myPrint($debug)); //Calling here myPrint does not work
exit(print_r($debug)); //This works
}
}
$test = array('alex');
exit(myPrint($debug)); //Calling here myPrint works
....
// The output error: Call to undefined function myPrint()
I just can't understand why anywhere else outside the code above works, but not inside it without defining it again inside
UPDATE
Doing it this way, doesn't seem to work either:
myPrint($debug);
exit();
// The output error: Call to undefined function myPrint()
UPDATE2
desktop.php the main file:
- require(LIBS.'commons.php');
- common html
- include module
Codepad containing desktop's code: http://codepad.org/hn8QlHQ9
exit– DaveRandom Jul 11 '12 at 16:45ifstatements. – Rocket Hazmat Jul 11 '12 at 16:50exit();! – DaveRandom Jul 11 '12 at 16:53myPrintoutside that if, works... inside not – w0rldart Jul 11 '12 at 16:56