How to show uploaded image in view page? I am new in yii, I am unable to fix this please help me -


in myprofile.php

 <?php echo chtml::image(yii::app()->request- >baseurl.'/xampp/htdocs/myapp/images/'.$model- >image,"image",array("width"=>200,"hieght"=>200)); ?>  

your image url incorrect.

yii::app()->request- >baseurl.'/xampp/htdocs/myapp/images/'.$model- >image

should change into:

yii::app()->request->baseurl.'/images/'.$model->image


Comments

Popular posts from this blog

xslt - Substring before throwing error -

Google Cloud Bigtable Durability/Availability Guarantees -

Android M doze mode and "native" posix socket freezing up -