/ Published in: PHP
Expand |
Embed | Plain Text
<?php $label1 = "The date is ". $dttime; function updatedate($button) { $button->date('Y-m-d H:i:s'); return $this; } $win = new GtkWindow(); $button = new GtkButton(); $button->$label1; $button->connect('clicked', 'updatedate'); $win->add($button); $win->show_all(); gtk::main(); ?>
You need to login to post a comment.
