HTML Question - Experts ONLY
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
- velocityGFX
- Posts: 71
- Joined: Sat May 28, 2005 3:52 pm
- Location: Texas,
USA
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
the problem with php is that there is no single tutorial without buying a book that covers everything what you need to do is be able to create a design spec for you project even if its really basic and look up the info you need for each section - once you have done that keep the code you write into a class and youve got re-usable code
for example, whenever i create a site i have a basic code base to generate error messages, then add on to it as required.
so then to create an error page i just do a ...
So you said you wanted to create a blog so the basics are (the suggested google terms are in red
):-
a way to create, login, logout, check permissions of users - PHP User Authentiacation and Sessions
a way to post comments and reply to comments and delete comments PHP SQL and Database
coding
for example, whenever i create a site i have a basic code base to generate error messages, then add on to it as required.
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();

a way to create, login, logout, check permissions of users - PHP User Authentiacation and Sessions
a way to post comments and reply to comments and delete comments PHP SQL and Database
coding
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
you shouldnt need a book (i havent got one
) everything is online try ... http://www.tutorialized.com/tutorial/Co ... ystem/9035 for the user management stuff

- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
oops dbl post 
of course if you do want a book....
http://print.google.com/print?q=php&btnG=Search+Print

of course if you do want a book....
http://print.google.com/print?q=php&btnG=Search+Print