umm it isnt that much different from Mys v1.3.1, I'll convert your sample code to Mys v1.3.2 compatible format:
	PHP Code:
	
		
			
 <?php 
require("inc/init.php"); 
if($mysidia->user->isloggedin){      
$title = "title";  
$content = " and more text...<br> 
    <img src=http://site.com/pic/pic.gif>  
        <a href=http://thissite.com> 
                  <img src=http://picutres.com/nature/wood.gif  ></a> 
"; 
$mysidia->page->settitle($title);
$mysidia->page->addcontent($content);
$mysidia->output();  
}
?>
		
	
 Note you need to create a lang file in the folder /lang with the name lang_{$scriptname}.php. Otherwise the script will show a lang file not found error message.