From 56336ee3d5ec32647f6dbf35cf09f94a13795b60 Mon Sep 17 00:00:00 2001 From: Connor Thomson Date: Sat, 19 Sep 2026 10:51:36 -0700 Subject: Random fixes and updates --- php/execute.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 php/execute.php (limited to 'php/execute.php') diff --git a/php/execute.php b/php/execute.php new file mode 100644 index 0000000..bd8fe18 --- /dev/null +++ b/php/execute.php @@ -0,0 +1,29 @@ +. + */ + +function execute($path) { + if (file_exists($path)) { + ob_start(); + include $path; + return ob_get_clean(); + } + return ''; +} + +?> -- cgit v1.2.3