snehalk 0 Posted February 1, 2015 Report Share Posted February 1, 2015 Hello, I am working on admin panel and i have one list page where alll records are displayed i want to send record ID with href to controller like <a href="<?php echo Yii::app()->request->baseUrl.'backend/vehicle/edit/'.$row['vehicle_id'] ?>">Edit</a> but its not working its giving error page not found. when i pass value with "?" query string it works but i want to pass as i mention above please help. Quote Link to post Share on other sites
Jonathon 255 Posted February 1, 2015 Report Share Posted February 1, 2015 You should generate the link with CHtml::link(). Check the docs for the exact arguments but it's something like: CHtml::link('My Link', array('controller/update', 'id' => $id) ). Something like that. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.