English 中文(简体)
纽芬兰语
原标题:A button to start php script, how?

在我点击后,我想打一个子,开始我的营地文字。 因此,我只提出2个单独档案,并有一个行动站,以备文件存放,然后让文件开始? 还是有更好的办法这样做? 可能列入一份文件?

<>Update:

我基本上做了一个文字,在它结束之前将做一系列的休息。 因此,通常当我访问该网页时,我会自动开始,因此,我会把一个子子立起来,直到我需要时才开始。

更确切地说:回答其中一个问题,即“开始书写”,因为只有执行文字。

www.un.org/Depts/DGACM/index_spanish.htm 更多信息: 我确实不需要从提交表格中将任何数据传送到文件箱。 我只想用我的文字来打一个 but子。 我只想知道这样做的最佳方式是什么。

最佳回答

如你所建议的那样,有2个档案是最容易的解决办法。

例如:

2 files solution:

index.html

(.. your html ..)
<form action="script.php" method="get">
  <input type="submit" value="Run me now!">
</form>
(...)

script.php

<?php
  echo "Hello world!"; // Your code here
?>

Single file solution:

index.php

<?php
  if (!empty($_GET[ act ])) {
    echo "Hello world!"; //Your code here
  } else {
?>
(.. your html ..)
<form action="index.php" method="get">
  <input type="hidden" name="act" value="run">
  <input type="submit" value="Run me now!">
</form>
<?php
  }
?>
问题回答

如果你根据寄出的寄售寄出的寄售出的寄售出的寄售价,你可以在一份文件中这样做。 例如:

if (isset($_GET[ secret_param ])) {
    <run script>
} else {
    <display button>
}

我认为,最好有两个档案。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签