mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2025-04-26 15:16:19 +02:00
minor corrections and distribution of the generated file
This commit is contained in:
parent
6535d4d7dd
commit
890c2397e3
6 changed files with 85 additions and 31 deletions
24
res/static/misa/update_index.php
Normal file
24
res/static/misa/update_index.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
$ch = curl_init("https://csgj.pw/canciones/result.html");
|
||||
$fp = fopen("index.html", "w");
|
||||
|
||||
curl_setopt($ch, CURLOPT_FILE, $fp);
|
||||
curl_setopt($ch, CURLOPT_HEADER, 0);
|
||||
|
||||
curl_exec($ch);
|
||||
curl_close($ch);
|
||||
fclose($fp);
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<script>
|
||||
setTimeout(() => document.location.replace("./"), 100);
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
You can see the result <a href="./">here</a>.
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue