the message board will problem take this and fuck it up with hahahaha or somebullshit, but here;
$str = "<a href=\"somelink.htm\" onMouseOver=\"window.status='blahblahblah';return true\" onMouseOut=\"window.status='';return true\">";
?>
<!-- then in your html -->
<?=$str?>
<!-- or -->
<?
print $str;
?>
there are many ways to do it
	PHP Code:
	
		
			
$str = "<a href=\"somelink.htm\" onMouseOver=\"window.status='blahblahblah';return true\" onMouseOut=\"window.status='';return true\">";
?>
<!-- then in your html -->
<?=$str?>
<!-- or -->
<?
print $str;
?>