asp的经典页面到php

时间:2015-07-29 20:01:55

标签: php asp-classic

我在经典的asp中有这个网址:" http:/blablabla/123.asp?id = 1293"。我的问题是,有没有办法将id号传递给外部php脚本而不使用表单并提交,或者只是这样做?

我的data.php脚本:

<?php

$xxx = $_POST["xxx"];

//... some code

$gantt->render_complex_sql("SELECT * FROM gantt_tasks WHERE something = '".$xxx."'" , "id", "start_date,duration,text,progress,parent","");
?>

我的&#34; 123.asp?id = 1293&#34;页:

<html>
<head>
// .. scripts and title
</head>
<body>
<form id="form1" method="post" action="data.php">
    <input type="hidden" name="xxx" value="Request.QueryString("id")" />
</form>
    <div id="gantt_here" style='width:100%; height:100%;'></div>
    <script type="text/javascript">

        gantt.init("gantt_here");
        gantt.load("data.php");

    </script>
</body>
</html>

我不想使用&#34; Response.Redirect&#34;页面要么。

1 个答案:

答案 0 :(得分:0)

你可以这样做:

更新:

gantt.load('data.php?id=<%= Request.QueryString("id") %>');

但是在同一个项目中使用旧的asp文件和php文件听起来很奇怪。