emacs-latex-preview-server/public/index.php
2024-06-22 00:54:56 -06:00

9 lines
206 B
PHP

<?php
move_uploaded_file($_FILES["file"]["tmp_name"], "tmp.tex");
$output = shell_exec("./tex2png.sh tmp.tex");
if ($output !== null) {
$host = $_SERVER['HTTP_HOST'];
echo "http://$host/$output";
}
?>