我尝试将PHP函数调用为HTML 5按钮格式,当我点击buttun它没有工作。 这里是第一个代码:
<button id="Location" type="button" value="LOCATION" formmethod="GET" formaction="<?PHP include'./Function/DisplayFunction/TableViewer.php'; Table("Location");?>" onclick="">LOCATION</button>
在我尝试这个之后:
<button id="Location" type="button" value="LOCATION" formmethod="GET" formaction="<?PHP include'./Function/DisplayFunction/TableViewer.php'; Table(/"Location/");?>" onclick="">LOCATION</button>
和此:
<button id="Location" type="button" value="LOCATION" formmethod="GET" formaction="<?PHP include'./Function/DisplayFunction/TableViewer.php'; Table(%84Location%84);?>" onclick="">LOCATION</button>
答案 0 :(得分:0)
使用反斜杠:\
代替:/
。
答案 1 :(得分:0)
包括将该php文件的所有内容粘贴到formaction
属性中,肯定不是您想要的,请尝试:
<?php
include('./Function/DisplayFuncrion/TableViewer.php');
echo '<button id="Location" type="button" value="LOCATION" formmethod="GET" formaction="'.Table("Location").'" onclick="">LOCATION</button>';
?>
答案 2 :(得分:0)
那里没有必要使用双引号。
试试这个
<button id="Location" type="button" value="LOCATION" formmethod="GET" formaction="<?PHP include('./Function/DisplayFunction/TableViewer.php'); Table('Location%'); ?>" onclick="">LOCATION</button>