-1

我找不到解决方案。我要做的就是获取并执行存储为我的数据库中的记录的 url/链接。我不希望它作为链接返回,而是从这个 url/link php 加载的页面。

4

4 回答 4

1

尝试使用file_get_contents ...

您需要从数据库中获取链接,然后使用此函数获取内容。

于 2013-03-11T12:13:14.523 回答
1
    <?php
        $con = mysql_connect('localhost','username','password');
        mysql_select_db('database_name');


        $sql  = "***`<select query here>`***";
        $res = mysql_query($sql);

        $row = mysql_fetch_row($res);

        $url = echo $row['url'];

        $contents = file_get_contents($url);
  ?>
于 2013-03-11T12:20:39.483 回答
0

不确定“执行网址”是什么意思。如果要在 URL 处获取数据,可以使用file_get_contents,如下所示:

$url_content = file_get_contents('http://www.example.com/page.html');

如果您想将用户发送到该 url,您可以使用header带有Location标题的命令将浏览器发送到该地址,即。

header('Location: http://www.google.com');
于 2013-03-11T12:14:58.427 回答
0

假设获取的变量是$fetch。在这种情况下使用:

header("location:$fetch");
于 2013-03-11T12:22:36.733 回答