Insert multiple lines GET automatically php [closed]

0

I have several lines like this:

http://192.168.0.1/feed/data.json?id=71667&start=1426031940000&end=1426064520000&interval=30
http://192.168.0.1/feed/data.json?id=71667&start=1426031940000&end=1426064520000&interval=30
http://192.168.0.1/feed/data.json?id=71667&start=1426031940000&end=1426064520000&interval=30
http://192.168.0.1/feed/data.json?id=71667&start=1426031940000&end=1426064520000&interval=30
http://192.168.0.1/feed/data.json?id=71667&start=1426031940000&end=1426064520000&interval=30
http://192.168.0.1/feed/data.json?id=71667&start=1426031940000&end=1426064520000&interval=30
http://192.168.0.1/feed/data.json?id=71667&start=1426031940000&end=1426064520000&interval=30

I need to run them to do an insert in the bank, how could I do it automatically?

    
asked by anonymous 06.10.2016 / 23:26

1 answer

1

Next you will post a POG here:

Method: POG (and do not know what to look for in google kkk)

$sql="Select * from minhatabela";
$query=mysqli_query($conexao,$sql);
while($result=mysqli_fetch_array($query,MYSQLI_ASSOC)){
   echo "<iframe src='$result[url]'></iframe>";
}

If you want other methods let me know which add-on.

    
07.10.2016 / 00:02