Jump to content
MakeWebGames

Login Pages/Other Questions..?


Poldar

Recommended Posts

Hey...I was wondering how were are to make, or re-organize login pages...I would really like to learn how to do this..to make a unique feel of a game that I am currently working on at the moment....simple things really, but how would we re-organize a login page?

Also, I would like to know how you would put in a picture ad, every time I tried putting one in there happened to be a mysql syntax error...

Could dome on give me some insight on these problems?

Link to comment
Share on other sites

Guest Anonymous

Re: Login Pages/Other Questions..?

It's pretty simple, all that you need to make the login work is the form, such as...

<form action='authenticate.php' method='POST'>

Username: <input type='text' name='username'>

Password: <input type='password' name='password'>

<input type='submit' value='Login'>

</form>

Then you just build your theme/template and add the form into the login area.

Also with ads best bet, would be to use heredoc function such as...

<?

## php code here

PRINT<<<ADS

Your ad code here

ADS;

?>

Link to comment
Share on other sites

Re: Login Pages/Other Questions..?

 

I do know HTML, from top to bottom...I am learning JavaScript, and then the next project is PHP...

That's pretty good learning JavaScript, when I've got spare time at college I read JavaScript books and also learn different languages

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...