Creating a dependent dropdown

Comparing #10 with #11

Revision #11 was created by fsb fsb on Jun 25, 2012, 6:28:07 PM.

Undid imdad's change, change #9 abotu multi-dimensional inoput

Content

[...]
```php
public function actionDynamiccities()
{
//please enter current controller name because yii send multi dim array 
 
$data=Location::model()->findAll('parent_id=:parent_id', array(':parent_id'=>(int) $_POST['Current-Controller']['country_id']));

$data=CHtml::listData($data,'id','name');
foreach($data as $value=>$name)
{
echo CHtml::tag('option',
[...]