使用php从mysql db获取并执行url

时间:2013-03-11 12:11:14

标签: php mysql

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

4 个答案:

答案 0 :(得分:1)

尝试使用file_get_contents ...

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

答案 1 :(得分: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);
  ?>

答案 2 :(得分:0)

不确定“执行网址”是什么意思。如果您想通过网址获取数据,可以使用file_get_contents,如下所示:

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

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

header('Location: http://www.google.com');

答案 3 :(得分:0)

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

header("location:$fetch");