I was here way before him a month after hbxf opened lol.
Printable View
Don't quit Adam you ***, your layouts are really good nd they can only get better even if yuo don't advance in HTML, PHP etc.
Well... you could do what I do instead of "full out web development".....
I basically provide help/coding/layouts to people who are too lazy or can't do it themselves for free! And it keeps me busy and teaches me tons!
I'm not teaching myself as such.
What I know so far, which isn't a lot, I have gotten from looking at HTML codes and seeing what they do.
My PHP knowledge, I like to call 'echo PHP'.
By 'echo PHP' - I mean I know this much:
PHP Code:echo
Hmmm If your not prepared to learn stick at what you do best. :) If you don't enjoy it however you should quit. Its all about enjoyment but It would be sad to see you go.
Nah dont, I like your work. If you are bored with HTML why dont you learn a server based language, much more "fun". Your layouts are hawt
I don't know anything, that's the thing..
Read this and you will learn a few things
PHP Code:<?php
/* These tags are for comments */
// Or you can use these
/* We get the username from script.php?username=Danny */
$username = $_GET['username'];
/* $username will be Danny if the browser is at script.php?username=Danny */
/* If they havent entered their username in, it will call them a **** */
if($username == NULL){
/* Print is the same as echo */
print("****, you need to enter your username");
}
/* If they have entered the username Peter, it will call them a frob */
elseif($username == "Peter"){
print("Hello peter, your a frob");
}
/* If they have entered the username Danny, it will call them FITTT */
elseif($username == "Danny"){
print("Danny, you are fit m8");
}
/* If they are called anything else, they are told to go home */
else{
print("$username, please go home...");
}