Related questions
findAll() in yii
EmailArchive Table:
id email_id to from
1 101 uk msm
2 102 uu avc
3 101 rk uk
4 103 xyz abc
5 104 xyz poi
6 104 abc xyz
7 101 xyz abc
Now in Yii I want record where email_id=101
I am using below code, but its not working.
$id =101;
$…
Get current URL/URI without some of $_GET variables
How, in Yii, to get the current page's URL. For example:
http://www.yoursite.com/your_yii_application/?lg=pl&id=15
but excluding the $GET_['lg'] (without parsing the string manually)?
I mean, I'm looking for something similar to …