hi..
I'm trying to write a widget with php
<html>
<body>
<?php
class example
{
function write()
{
$ilk ="<p onMouseover="this.innerHTML='I am in :)'">Move the mouse over this text.</p>";
echo " $ilk ";
}
}
$aa= new example("aa");
$aa->write();
?>
</body>
</html>
It doesn't work .. .please help me .. thanks a lot..