View Single Post
  #5  
Old 09-06-2014, 05:38 PM
Abronsyth's Avatar
Abronsyth Abronsyth is offline
A Headache Embodied
 
Join Date: Aug 2011
Location: NY
Posts: 1,011
Gender: Male
Credits: 114,206
Abronsyth is on a distinguished road
Default

I must be doing something pretty wrong here XD Used to be so simple *sigh*

Can't get this to work;
PHP Code:
<?php

class BlankController extends AppController{

    private 
$view;
    private 
$subController;

    public function 
__construct(){
        
parent::__construct();    
    }
    
    public function 
index(){
        
$mysidia Registry::get("mysidia");
        
$document $mysidia->frame->getDocument();
    }
    
$document->add(new Comment("<script language="JavaScript">
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "
Quote 1";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();</script>"
));
}
?>
__________________
My Mods Site (1.3.4, 2020 Mods)
Reply With Quote