librarynotices/refresh.php

13 lines
227 B
PHP
Raw Normal View History

2024-11-25 12:53:31 -06:00
<html>
<head>
<title> Refreshing...</title>
</head>
<body> <h2>Refreshing...</h2>
<?php
ob_start();
print "Refreshing...";
ob_flush();
shell_exec("python3 /usr/local/bin/libnotices.py");
header('Location: /');
?>
</body></html>