Good morning!
I have a button in php like this
echo CHtml::button(Yii::t('site', 'Help (F2)'), array('id' => 'run_example'));
Which performs a function of js in the following way
$("#run_example").click(function(){
Sideshow.start({ listAll: true });
});
I want that when some user clicks on that button the information is sent as user name, time, date to a MySQL table
I hope you have explained me well and can help me.
Thanks and regards.