Answers for "get a value from url in php"

PHP
1

getting values from url php

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

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

Browse Popular Code Answers by Language