Advertisement
hduaj
May 30th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. In A.php I incorporate config.php and B.php:
  2.  
  3. include_once("path/to/config.php");
  4. include_once("path/to/B.php");
  5. B.php is nonexclusive content utilized by different contents. I couldn't say whether script, which included B.php, additionally included config.php so in B.php there is
  6.  
  7. include_once("path/to/config.php");
  8. The issue is that in A.php I can peruse every one of the factors from config.php, however in B.php they aren't set. Assuming I do print_r(get_included_files()) in B.php, I can see that config.php is incorporated.
  9.  
  10. What is causing this? How might I appropriately incorporate that config.php so it will be accessible in B.php (and different contents included by A.php...)?
  11.  
  12. https://1921681001.id/
  13. https://19216811.cam/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement