我有一个 PHP 文件,我在其中显示一个带有 mysql 表数据的 html 表 (HTML)。
<?php
include 'connexion.php';
session_start();
$idfirm = $_REQUEST['idfirm'];
$namefirm = $_REQUEST['namefirm'];
表中的行具有
<tr class="clickableRow"...
然后在行单击(javascript)上,我希望能够调用(POST)另一个 PHP 文件,该文件将根据表行中的一些信息显示其他信息。我很难做到这一点。
到目前为止我所做的是:
echo '
...
jQuery(document).ready(function($) {
$(".clickableRow").click(function() {
var tableData = $(this).children("td").map(function() {
return $(this).text();
}).get();
// So I can access the field data either like this
var myID = $.trim(tableData[0]);
// or like this:
var name = $(this).closest(\'tr\').find(\'td:eq(1)\').text();
alert(myID);';
echo" // here I would need to access some variables that I received above in PHP from POST
var namefirmx = '{$namefirm}';
var idfirmx = '{$idfirm}';
";
// and here I would like to call another PHP file (with POST) that will display info about the employee
那么,我怎样才能对另一个 php 文件进行 POST 并发送 POST 变量:name、namefirmx、idfirmx、myID
我不确定如何进行 POST。
我相信除了javascript之外没有其他方法可以调用POST。(请记住,必须在单击行时进行 POST)
请在这里帮我...