Answers for """ in php from url"

PHP
1

getting values from url php

$id = $_GET['id'];
// OR

$id = $_REQUEST['id'];
Posted by: Guest on March-06-2021
0

php open url

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

echo $page;
Posted by: Guest on August-06-2021

Browse Popular Code Answers by Language