如何创建一个字段来更改 simple_html_dom 中的 URL?

How can I create a field to change the URL in simple_html_dom?

我正在使用 simple_html_dom,提取网站上的名称、价格以及制造商(如果有的话)。

现在,我想创建一个脚本来创建一个字段,您必须在该字段中放置您不想在网站中提取的 URL。

当您点击底部 "Extract" 时,脚本会将我的代码中的 URL 更改为:

 $html->load_file ('URL'); 
到我们在该字段中输入的 URL。

我该怎么做?


你好@Richard,我已经完成了 html 表格,并且正在处理 action_page.php:

这是代码:

<!DOCTYPE html>
<html>
<body>

<form action="action_page.php" method="get">
  URL:<br>
  <input type="text" name="URL" value="">
  <br><br>
  <input type="submit" value="Submit">
</form> 

<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>

</body>
</html>

而这个 action_page.php:

<html>
<body>

The URL is: <?php echo $_GET["URL"]; ?>

</body>
</html>

现在,我该怎么做才能在我的代码中替换 URL 来提取价格,因为我们在 extractor.php 中也有 action_page.php ?

谢谢!

为此,我做了:

$html->load_file ($_GET["URL"]);

并且在 action_page 中:

<!DOCTYPE html>
<html>
<body>

<form action="action_page.php" method="get">
  URL:<br>
  <input type="text" name="URL" value="">
  <br><br>
  <input type="submit" value="Submit">
</form> 

<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>

</body>
</html>

谢谢!最好的问候