如何在启动时发布http表单?也许通过运行PHP脚本?
我在服务器上使用Ubuntu Server 14.04。我有一个PHP文件,其中包含一些我希望在打开服务器时运行的脚本/代码。 我想XXXXXX.php在登录前而不是登录后在服务器启动时运行此文件。 我没有任何台式机,所以请通过终端告诉我该过程。我想要运行的PHP文件在/var/www/XXXXXX.php文件夹中。 现在可以了吗? 编辑:我XXXXXX.php包含以下代码... <?php $externalIp = file_get_contents('http://phihag.de/ip/'); ?> <form action="Iframe.php" method="post" enctype="plain" id="theForm"> <input type="text" name="My_IP" value="<?php echo $externalIp;?>" /> <input type="submit" value="Send" /> </form> <script type="text/javascript"> window.onload = function() { var form = document.getElementById("theForm"); form.submit(); } </script>