The YII image is made of buttonCHtml: imageButton. The CHtml: imageButton method can use an image as a button, but the submitted method is not post, or it may be GET, but it has not been tried. In the view, write :? Phpif (isset ($ _ GET [id]) {CHtml: imageButton can use an image as a button, but the submission method is not post,
Or GET.
Write in view as follows:
If (isset ($ _ GET ['id'])
{
Echo CHtml: imageButton (Yii: app ()-> baseUrl. '/images/button1.png', array ('submit '=> 'action1? Id = '. $ _ GET ['id']); //
Echo CHtml: imageButton (Yii: app ()-> baseUrl. '/images/button2.png', array ('submit '=> 'controller2/action2'); // unspecified
}
?>
In this way, you can submit.
But in the controller action
You cannot get POST www.2cto.com.
If (isset ($ _ POST ['post'])
{
// NEVER COME HERE
}
Author: georgelife7
Http://www.bkjia.com/PHPjc/478091.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478091.htmlTechArticleCHtml::imageButton method can use an image button, but the method of submission is not post, it may be GET, did not try GET. In the view, write :? Php if (isset ($ _ GET [id]) {...