Setting the GET parameters to the action

Hi,

I would like to use URLs like:

reserve/create/hospitalName/branchName

In yii to do so, i should either define a urlManager rule, which should be parsed for each url entered or traversing over the GET parameter since yii creates a key/value pair from the URLs. something like:

	foreach ($_GET as $key => $value) {


		$params[] = $key;


		if($value)


			$params[] = $value;


	}

It would be great if i could do smthg like:

	createAction($hospitalName,$branchName){ .... 

where the $_GET parameters are filled in to the actions parameter list in order. For compatibality issues, turning this on/off could be activated through the main config file.

thx for this great framework. I really appreciate the effort.