将值传递给php变量

时间:2014-09-24 19:05:03

标签: javascript php

这篇文章是我上一篇文章的延续,我错过了一点,所以我开始了新的帖子。我得到了上一篇文章的解决方案,我的最终代码如下所示:

Scrapping code not working in php

<?php
$html = file_get_contents("http://geoportaal.maaamet.ee/url/xgis-ky.php?ky=79401:006:0812");
preg_match_all('(<li.*?>.*?</li>)', $html, $matches);
$one=$matches[0][0];
?>

<script type="text/javascript">
function Assign() {
    document.getElementById("OutputField").value = "<?=$one?>";
}
</script>

<input id="OutputField" type="text" style="width:200px"/>
<input type="button" value="Assign Value" onclick="Assign()"/>

进一步我在最后添加了一个输入框,在那个文本框中,我将在运行时输入我的值,所以一旦我点击我的按钮,文本框值将转到php变量然后该变量将分配在“ky =”之后。我尝试过一些像POST和GET方法的东西,我又错过了一些东西。

我正在寻找像

这样的东西
$html = file_get_contents("http://geoportaal.maaamet.ee/url/xgis-ky.php?ky=" + $PHPvariable);

1 个答案:

答案 0 :(得分:0)

您需要了解如何在PHP中处理表单和表单信息:

http://php.net/manual/en/tutorial.forms.php