Pausing To Print

nassausky

Member
Inside business_logic.php at times I need to display a variable. Echo doesn't seem to work and die stops the whole procedure. Is there a happy medium to pause and display some variable for example at line 1383 to display the $file_name variable or more..
 

billthecat

Well-known member
I don't actually have the dadabik download or my file editor with me, so I don't know what line 1383 is; but print_r is probably what you're looking for.

<?php

print_r ($file_name);

?>

 

nassausky

Member
Placing echo or print_r inside that area doesn't display the results .. For some reason it refreshes the screen ....
 
Top