Beginner's question - GET parameter mode
Moderators: egami, macek, gesf
-
- php-forum Fan User
- Posts: 973
- Joined: Mon Oct 01, 2012 12:32 pm
check out Jreams's create your own mvc series. it takes him a little bit to really get going but it will answer this question fairly early on. http://jream.com/learning/videos/php-oo ... mvc-part-1
use the link such as controller.php?mode=abc and in other link use controller.php?mode=def
then fetch the value of mode in other page via get[''];
e.g. $mode=$_GET['mode'];
then fetch the value of mode in other page via get[''];
e.g. $mode=$_GET['mode'];