cotonti.com : Question about root php https://www.cotonti.com Son konu mesajları Cotonti en Tue, 20 Jan 2026 09:34:32 -0000 Trustmaster Per, 18 Şub 2010 04:55:08 -0000 ez
It is read default by common.php from the GET.. (nice, so I can use those)

Thanks]]>
Per, 18 Şub 2010 04:40:17 -0000
Trustmaster
  • $m stands for mode or maybe module. It is used by those switches to detect which mode of the script to use.
  • $n is like $m, but is more generic. In forums it is used to specify special paging modes (or numbers): n=last means go to the last page available.
  • $a means action. For example 'update', 'send', 'add', etc.
  • $b is the next latter after $a, isn't it? So it is similar, but more generic.
]]>
Per, 18 Şub 2010 04:09:49 -0000
ez
It always goes to the default anyway..

switch($m)
	{
	default:
	require_once(......inc.php');
	break;
	}

Found it, it comes from the GET

$m = sed_import('m','G','ALP',24);
$n = sed_import('n','G','ALP',24);
$a = sed_import('a','G','ALP',24);
$b = sed_import('b','G','ALP',24);

BUT what meaning does m,n,a,b has... (What is usually done with these vars) ??]]>
Per, 18 Şub 2010 03:50:46 -0000