php - How to display the logfile in a browser YII -
i need display logfile in browser.
if(isset($_get['showlog'] && $_get['showlog']==1){ $this_>redner('output', application.log); }
is possible in yii? , how it?
thanks lot :)
if (isset(yii::app()->request->getquery('showlog')) { $this->render('output', application.log); }
Comments
Post a Comment