If give you a link like http://login.php?workerid=abc
, how can we get the information of workerid in php? Thanks. Maybe $_GET
function, but do not know exactly how to make that work.
you can get information from url like this
$data=$_GET['workerid'];