It's called sessions. Example is another framework, but you should catch the drift.
<?php
$spage = Session::get('dogpage');
$spsch = Session::get('dogsearch');
$aval = Session::get('dogaval');
echo "<a href=".DIR."dog/indexadmin?p=".$spage."&psch=".$spsch."&aval=".$aval.">Back to List</a>";
?>
Normally you return to a list page after an edit, not an add.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community