Helo,
I have a confussion and I need to get it solved in core php we used to create a url parameter through which we would be able to get values from the url so hwo this could be happend in codigniter for example
<a href="index.php?add=1">Add page</a>
//setting up a get request
if(isset($_GET["add"]) == 1) {
//show ad page form
} else {
//show the whole page
}
how do this same condition would be done in codigniter?