View Single Post
  #2  
Old 12-17-2012, 04:31 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 392,232
Hall of Famer is on a distinguished road
Default

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.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote