Posted: Thu Oct 06, 2005 7:20 pm
not via html if you had php then you can do it
http://theuniversal.net/forumrestore/phpBB3/
http://theuniversal.net/forumrestore/phpBB3/viewtopic.php?t=3159
They can use Xanga, Blogger, or some other service like those.Freako wrote:OMG! I dont want a cheapy blog. i have access to php, mysql, postresql and all the rest. I am making one for people who dont have it
Code: Select all
class Error
{
var $ErrorModule;
var $ErrorNumber;
var $ErrorMessage;
var $ErrorDescription;
var $ErrorStatus;
function Error()
{
}
function SetErrorNumber($Number)
{
$this->ErrorNumber=$Number;
}
function SetErrorModule($Module)
{
$this->ErrorModule=$Module;
}
function SetErrorMessage($Message)
{
$this->ErrorMessage=$Message;
}
function SetErrorDescription($Description)
{
$this->ErrorDescription=$Description;
}
function SetErrorStatus($Status)
{
$this->ErrorStatus=$Status;
}
function DisplayError()
{
?> Add your HTML output here
<?
die();
}
}
Code: Select all
Error::SetErrorModule('Templating');
Error::SetErrorNumber(1);
Error::SetErrorMessage('<p>The file : '.$this->TemplatePath.$this->TemplateFile.' could not be found.</p>');
Error::SetErrorDescription('<p>please check the SetTemplatePath and SetTemplateFile variables used and ensure that the template file physically exsists. </p>');
Error::SetErrorStatus('Die');
Error::DisplayError();