Nov 20, 2009
Pages: 1, 2

How To Put A Phpbb Login Box On Your Main Site. - Code and .php included!!!

free web hosting

Read Latest Entries..: (Post #19) by iGuest on Oct 15 2009, 11:41 PM.
login script connection and enter code creation point how to How To Put A Phpbb Login Box On Your Main Site. How do I connect the login box I got here to a collection point that collects user names and passwords so that every one who joined my website can log back in ? In other words how do I create a sign up box and connect it to the login page ? I mean I got the login script here but what good is it without the connection from the sign-up script. The user must p...
read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > MODERATED AREA > Tutorials

How To Put A Phpbb Login Box On Your Main Site. - Code and .php included!!!

GM-University
I have included my coded file with this...
Ok here is the code.
CODE

//
//Create login area, replace the phpBB2 in /phpBB2/login.php with your forum's //directory
//
<form action="/phpBB2/login.php" method="post" target="_top">

<table width="25%" cellspacing="2" cellpadding="2" border="0" align="center">
 <tr>
<td align="left" class="nav"><a href="/phpBB2/index.php" class="nav">Prank Place Forum Index</a></td>

 </tr>
</table>

<table width="25%" cellpadding="4" cellspacing="1" border="0" class="forumline" align="center">
 <tr>
<th height="25" class="thHead" nowrap="nowrap">Please enter your username and password to log in.</th>
 </tr>
 <tr>
<td class="row1"><table border="0" cellpadding="3" cellspacing="1" width="100%">
   <tr>

  <td colspan="2" align="center">&nbsp;</td>
   </tr>
   <tr>
  <td width="11%" align="right"><span class="gen">Username:</span></td>
  <td>
    <input type="text" class="post" name="username" size="25" maxlength="40" value="" />
  </td>
   </tr>

   <tr>
  <td align="right"><span class="gen">Password:</span></td>
  <td>
    <input type="password" class="post" name="password" size="25" maxlength="32" />
  </td>
   </tr>
   <tr align="center">
  <td colspan="2"><span class="gen">Log me on automatically each visit: <input type="checkbox" name="autologin" /></span></td>

   </tr>
   <tr align="center">
  <td colspan="2"><input type="hidden" name="redirect" value="" /><input type="submit" name="login" class="mainoption" value="Log in" /></td>
   </tr>
   <tr align="center">
  <td colspan="2"><span class="gensmall"><a href="profile.php?mode=sendpassword" class="gensmall">I forgot my password</a></span></td>
   </tr>
 </table></td>

 </tr>
</table>

</form>


You can test this out on my site, here> http://www.prankplace.cjb.net/Untitled-2.php
If you like my little guide shout it on my forums shoutbox at the bottom of the page.
tongue.gif

Edit: Fixed incorrect link. -Spectre

Notice from snlildude87:
By GM's wishes, the password and username have been removed. If you want to test it, you will have to register. Sorry, but that's what you get when other abuse privileges. smile.gif

 

 

 


Comment/Reply (w/o sign-up)

GM-University
The link in the first post is incorect, the correct link would be http://www.prankplace.cjb.net/Untitled-2.php
Sorry. unsure.gif

Comment/Reply (w/o sign-up)

GM-University
Ooh, who where the people who tested it out?

Comment/Reply (w/o sign-up)

Phi
nice tutorial GM , im going to try it out soon as i can . im going to try and write some tutorials too. this tutorial was very helpful i was looking for something like this in a long time. im glad i came here

-Phi

Comment/Reply (w/o sign-up)

GM-University
Click to view attachment
QUOTE(Phi @ Apr 17 2005, 07:55 PM)
nice tutorial GM , im going to try it out soon as i can . im going to try and write some tutorials too. this tutorial was very helpful i was looking for something like this in a long time. im glad i came here

-Phi
*



Here is an example for a login box to Trap17 that I want to put in my custonm title...
CODE
<form action="http://www.trap17.com/forums/index.php?amp;act=Login&amp;CODE=01" method="post" name="LOGIN" onsubmit="return ValidateForm()">
<div class="borderwrap">
 <div class="maintitle"></div>
  <div class="errorwrap"></div>
 <table width="60" cellspacing="1">
  <tr>
   <td width="60" height="74" valign="top">
    <fieldset>

     <legend><b>Log In:</b></legend>
     <table width="60" cellspacing="1">
      <tr>
        <td width="60"><b> Username:</b></td>
       <td width="60"><input type="text" size="25" maxlength="64" name="UserName" class="forminput" /></td>       </tr>
      <tr>
       <td width="60"><b> Password:</b></td>
       <td width="60"><input type="password" size="25" name="PassWord" class="forminput" /></td>

      </tr>
    </table>
    </fieldset>
    </td>
   <td width="60" valign="top">
    <fieldset>
     <legend><b>Options</b></legend>
     <table width="60" cellspacing="1">

      <tr>
       <td width="60"><input type="checkbox" name="CookieDate" value="1" checked="checked" /></td>
       <td width="60"><b>Remember </b></td>
      </tr>
      <tr>
       <td width="60"><input type="checkbox" name="Privacy" value="1" /></td>
       <td width="60"><b> Invisible</b></td>

      </tr>
     </table>
    </fieldset>
   </td>
  </tr>
  <tr>
    <td class="formbuttonrow" colspan="2"><input class="button" type="submit" name="submit" value="Log me in" />
     <a href="http://www.trap17.com/forums/how-put-phpbb-login-box-main-site-t20439.html">Click here</a> to learn how to do this!
     <input type="hidden" name="referer" /></td>
  </tr>
  <tr>

   <td class="catend" colspan="2"><!-- no content --></td>
  </tr>
 </table>
</div>
</form>

 

 

 


Comment/Reply (w/o sign-up)

snlildude87
Yikes! A login box for your custom title??! That's a bit complex, so good luck, GM!

By the way, some JavaScript doesn't work in the custom title such as the "onmouseover"...I tried doing that for my marquee, but it seems to block it for some weird reason.

Comment/Reply (w/o sign-up)

GMTech
QUOTE(snlildude87 @ Apr 18 2005, 08:03 PM)
Yikes! A login box for your custom title??! That's a bit complex, so good luck, GM!

By the way, some JavaScript doesn't work in the custom title such as the "onmouseover"...I tried doing that for my marquee, but it seems to block it for some weird reason.
*



I can't even seem to find the option to change my custom title, I've checked the whole user control panel, and am unable to find it...

Comment/Reply (w/o sign-up)

Dooga
Just go to this link: http://www.trap17.com/forums/edit-profile-info.html and edit the "profile information"

Comment/Reply (w/o sign-up)

Hurley
Nice code man, might use. Also is this for PHP or PHPbb, because I am just not sure..sad.gif (n00b alert..)

Comment/Reply (w/o sign-up)

Wikinger38
QUOTE(Hurley @ Apr 26 2005, 07:04 AM)
Nice code man, might use. Also is this for PHP or PHPbb, because I am just not sure..sad.gif (n00b alert..)
*


PHPbb is a Forum, based on Php! huh.gif

Comment/Reply (w/o sign-up)

Latest Entries

iGuest
login script connection and enter code creation point how to
How To Put A Phpbb Login Box On Your Main Site.

How do I connect the login box I got here to a collection point that collects user names and passwords so that every one who joined my website can log back in ?

In other words how do I create a sign up box and connect it to the login page ? I mean I got the login script here but what good is it without the connection from the sign-up script. The user must pick up his unique code in his email before logging in 

I also need to find a way to generate these unique codes for each user and each user name that only last 30 days max and then must be regenerated by the user. 

More or less is this to complicated ??    

-reply by chuck

Comment/Reply (w/o sign-up)

iGuest
Replying to GM-UniversityReplying to GM-University
My MINOR son searched on how to create a login box on a website and the link on here is for a porn site.
I do not appreciate this at all. If you want to post links like this label it adult content and not on a page like this. That would be on a page for people who are looking for smut like porn, not for creating a login box!

Comment/Reply (w/o sign-up)

ibn Musa Al-Khwarizmi
hi GM-University,
thanks for this tutorial
i'de like to test this one on my own local webserver
i have a main page written in PHP

http://127.0.0.1
and have also a directory named forums, where i have installed the free forums phpbb
i each it using this url
http://127.0.0.1/forums

thx in advance


Ibn Mousa

Comment/Reply (w/o sign-up)

jlhaslip
This IS an HTML version. No php required for this to work.

Comment/Reply (w/o sign-up)

misko897
Anyone know if there is a html form of this script? Thanks in advanced!
-Cosmic

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Pages: 1, 2
Similar Topics

Keywords : put, phpbb, login, box, main, site, code, php, included

  1. [aef] Most Recent Topics Listing Mod
    on your Web-site pages (2)
  2. Create Dynamic Html/php Pages Using Simple Vb.net Code
    Taking your application data, and creating a webpage for others to vie (1)
    This example will show you how use a string in VB to create PHP code. In order to do this, you need
    a string to store your PHP page and a function that I will list at the bottom of the page for you to
    put in a module. This code is written in VB.NET Public Sub CreatePage(ByVal HTMLTitle As
    String, ByVal HTMLText As String, ByVal HTMLFileName As String) Dim strFile As String '
    ---------------------- ' -- Prepare String -- ' ---------------------- strFile = "" '
    -------------------- ' -- Write Starter -- ' -------------------- strFile = " " ....
  3. Add Flashing Inbox To Invisionfree Forum
    Html code for invsiionfree!! (2)
    Do you find it annoying when you are on your invisionfree forum, and you get a new message, and it
    ends up taking you 5 minutes to notice? This code makes the inbox link flash bold red saying how
    many messages you have. In version 1 the word inbox stays the same, and doesnt change at all (for
    Example this is flashing: Inbox (2) In version 2 (the second code) the word inbox changes to
    messages (constantly, so that if you have none, it says messages (0) instead of inbox (0). It still
    flashes Red Put the following In the Header and Body Section (Admin Cp>>>Skinning ....
  4. How To Make An Ultimate Game List.
    If you're making a site on video games or such. (0)
    Hello. I am BuBBaG. You can call me Bubba for short. I'm going to show you how to make an
    Ultimate Game List. First off, we need to make a database, we are going to call this database
    `my_db`, leave out the `'s. Inside that database we will need to create a table called
    `ugl'(Ultimate Game List, duh). To make the table, simply enter this in the Syntax. CODE
    CREATE TABLE ugl ( System char(50), Game char(50), ) In the above code, it is stating we are
    creating a table called ugl, with two columns, System, and Game. Next, we will need to make a form,
    t....
  5. Simple Stylesheet Tutorial
    Stylesheet embedded in your site. (2)
    Hi - ill show you how to make a simple style sheet that will be embedded into your site. OK make
    sure your site is set up already (like the standard tags) To start and end off a stylesheet you
    need to do the following CODE Ok lets start CODE p { font-family: "Tahoma";
    font-size: 9; color: "red"; } So when you come to put in CODE Hi! The text will
    appear red and will be in Tahoma. I will now just show you how to change the background colour of
    the text. CODE span.hilightred {background-color: "red";} span.hilightblue {backgrou....
  6. [php] Clean Code Functions
    Clean up your html output from php scripts (5)
    There is another Topic about writing 'clean' HTML code posted elsewhere on the Forum.
    I'll edit this Topic and add the link so you can review it on your own, and there is no need for
    me to comment on it in this thread, but the purpose of this Topic is to introduce a pair of
    functions which can be used for making sure that the HTML output from my scripts is readable when a
    view-source is reviewed. Two handy functions are included here. They work together quite nicely,
    and I will start this Tutorial with a short summary of the reasons for their 'being....
  7. [phpbb] Member Last-visit Report Script
    for phpbb2 databases (0)
    One flaw in the phpbb2 administration section is a report to list out the 'last-visit'
    time/date of the membership. I wrote a script to do exactly that and will be sharing the script with
    you here. the first section defines the variables required for the Database connection, finding the
    right database, supplying passwords, etc. HTML DEFINE ('DB_USER', 'YOUR DB USER
    NAME'); // change these defined values to suit your own situation DEFINE ('DB_PASSWORD',
    'YOUR DB PASSWORD'); DEFINE ('DB_HOST', 'localhost'); DEF....
  8. How To Set Up A Bookmarking System On Wii
    Use your favorite social bookmarking site. (0)
    This is a simple tutorial on a way to set up a bookmarking system on your Wii with greater stroage
    than the Favorites. It is more complicated than the Favorites and requires manual URL typing. Well
    let's dive on in. Items Required Nintendo Wii Internet Channel 3 Empty Favorites Internet
    Connection An account on a social bookmarking site I will be using delicious as an example.
    delicious Ok, if you do not have an account, read on. If you do have an account, go to the
    {account} section. Ok, first you need to register an account. This can be done by clicki....
  9. To Automatically Run Command When Login / Logoff
    (3)
    In case that you need login and / or logoff to execute some commands. You could do this with GPO
    login / logoff function. Here is step: 1.) Choose Start Menu -> Run -> type in gpedit.msc 2.)
    Expand User -> Windows Settings ->Script ( Logon / Logoff ) 3.) Double-Click either one and a dialog
    displayed 4.) Click the add button and then browse the command files that you wish to executed. The
    Script Parameters allowed you to pass any extra parameters to the command or applications. Click OK
    button. 5.) You command now should displayed on Name / Parameters List Box. Click O....
  10. Create A Google Seach Result Page Embed Within Your Site Page.
    (12)
    Create a google seach result page embed within your site page. It is easier to create
    web page that embeded the google search result in it. The first step is to go to google apply an
    account for the google ad-sense. After that login to you account and choose the create ad-seach
    option. Most of time the google search box give all we have the great and powerfull seach ability.
    But, have you think every time users get seach with it. They do redirected to another page that is
    not within you site. It is easier to create web page that embeded the google sea....
  11. Php Word Filter
    Have you accidently sworn on your site? Or do you want to keep visitor (9)
    This is pretty simple but very useful if you don't want people to swear. We will be using
    str_replace for this. CODE str_replace ("curseword, "replacemet"); ?> Thats pretty simple,
    just fill in the curse word and the replacement, and then repeat... heres what it would look like
    full size: CODE str_replace("swear", "replacement"); str_replace("swear", "replacement");
    str_replace("swear", "replacement"); str_replace("swear", "replacement"); ?> Ok, but how do you
    get it to work on your page now? Well, save that file as wordfilter.php and use CODE ....
  12. Nice Clean Php Layout Coding.
    Learn a nice neat way to code your layouts with php (7)
    There are basically two main ways to code your php. Method 1) Creating a php document with an html
    look. The you throw in include tags all over the place. Its unorganized, and you have lots of stray
    files hidden in folders and scattered in your base directory. Its difficult to organize, and you
    make mistakes easily. Example: This document would be called index.php Whatever
    Banner or something Some content here. Mostly along the lines of You might ask what
    the problem was? Well, those include tags tend to multiply, and so do all those unne....
  13. Uploading Images To Phpbb Galleries
    (0)
    This tutorial can be used to show someone how to upload images to a PHPBB Gallerie addon. This
    tutorial is not specific to any particular phpbb mod since all mods will most likely be similar. 1)
    go to the website galleries (easy) (http://www.school-stuff.org/album.php) 2) Click on the category
    that you want to upload the images to. 3) Look for a button that says Upload and click on it. 4)
    Insert a Title in the title box this will be what people can identify the picture by, does not need
    a description. 5) Click on the Browse Button next to 'Upload a picture from ....
  14. Simple Php Login And Registration System
    (19)
    Hello. This is my first web tutorial ever. This is basically a simple register and login script.
    Yes, I know it’s a bit rubbish but I’m quite new to PHP/MySQL. Here’s the register form. This can
    be any file extension you like. I’d recommend calling it register.html . CODE
    Register Register Username: Password: First Name:
    Last Name: Age: Now create a MySQL database. Then create a
    file that will be called CODE mysql-connect.php . Here is the file: CODE $co....
  15. Faux Ajax Loading - Css Only
    Pretend your site is Ajax based (3)
    Link: http://www.jlhaslip.trap17.com/samples/misc/ajax/index.html Check that out. The first page
    has information and the second and has the actual example of its use with sample CSS code. I find
    that when you visit a site which has a slow server and attempt to view 'large' Image files,
    it is pretty boring to sit and stare at a blank screen, so this little snippet of code can be used
    to give the visitor something to see to indicate that the image is being downloaded. I built a
    small animated gif that sits in the background of the space allocated for the image....
  16. Your First Autoit
    Learning To Code.. (7)
    Autoit is a simple, yet powerful programming language, it allowed the creation of the pangea
    desktops, and the Remote Pc Control with a cell.. You can learn it too. Here is the first of several
    lessons i will post inside of this topic. It is a 32 bit program, it doesnt work on windows 98, 95,
    and i dont think (THINK) Windows ME Step 1: Download and install the latest version of autoit from
    http://www.autoitscript.com i prefer that you use beta. Step 2: Right click somewhere on your
    desktop or my documents, and mouseover new and click Autoit V3 Script Step 3 (optiona....
  17. How To: Make A Simple Php Site
    Making one file show up on all pages using php (21)
    I have looked all over the site and could not find anything that was like this simple, or just like
    this at all.. For some people i know that you are using a basic HTML site...and having a big menu
    if you want to add somthing you have to go into every one of the pages and add or remove or edit
    what you want to do, but with somthing verry simple all you would have to do is edit one file, and
    all of the pages that have the PHP script on them would suddenly change to what that one file is.
    So to start off if you are planning on using this little tirck, the page that you a....
  18. Automatic Login
    in WinXP (6)
    Ever wanted to just turn on our computer and when you get back it's already on the desktop?
    (Rather then having to login at the welcome screen) Now some computer have this feature by default,
    but what if it gets broken, try this. On an Administrator account goto start >> Run, and type
    "control userpasswords2" (without the quotes) Uncheck the box that "Users must enter a Username and
    Password to use this computer", then press Ok. You will be prompted to enter a default user and
    their pasword, then next time you restart the computer it will automaticaly login to that....
  19. Phpbb Forum Site Transfer
    How to do it, step by step instructions (20)
    I'm sure many of you out there have used phpBB at some point. To those who enjoy running forums
    and online communities, specifically supporting phpBB, I am about to tell everyone how to restore
    the forums database from one website, to another. This is presuming you do not have any mods or
    hacks installed. Some of you may find this information useful. Here is the scenario: Let's say
    you have forums running phpBB version 2.0.17 (currently the latest one). You have decided that you
    want to move your forums to a whole new URL and provider, and as an added bonus, ch....
  20. How To Create A Phpbb Fm
    Create a Fully Modded forum. (52)
    1. Well once you get the file onto your computer, your going to need an FTP client. I suggest Core
    FTP, just do a Google search for it, and theres a free version, which I use, and is just great. 2a.
    I'm guessing you already have an unzipping program to unzip the file you're downloading, so
    we'll skip that step. 2b. Go to http://phpbbfm.net . On the left side, e little below the top,
    click on the Zip link, which will download the file. Unzip the file you just got. 3. Once all the
    files have been unzipped from the main file you just got, find the folder tha....
  21. Css And Javascript Combined For Dynamic Layout
    use of different CSS files at same site (9)
    This tutorial is meant for people that are dealing with problems while coding their site at 100% of
    width. Important notice: Some people has JavaScript disabled, so they will not be able to load CSS
    file (take this in account when creating your website). How this script works. In the HEAD of your
    HTML document will apply this command, so variable.js file will be load at start: CODE
    In browser JavaScript file variable.js is loaded. This Javascript file consist of this parameters,
    copy this code and name it variable.js CODE // JavaScript Document if (sc....
  22. How To Make A Very Simple Wap Site
    A quick tutorial about WML language (43)
    WAP Site Tutorial : How to Make A Wap site? Before We begin.. Defination from the
    Web about Wap. QUOTE WAP is an open international standard for applications that use
    wireless communication . Its principal application is to enable access to the Internet from a
    mobile phone or PDA .A WAP browser provides all of the basic services of a computer based web
    browser but simplified to operate within the restrictions of a mobile phone. WAP is now the
    protocol used for the majority of the world's mobile internet sites, known as WAP sites ....
  23. Simple Login In Visual Basic 6
    user interaction example trough login programm (9)
    First of all, I am NOT a programmer, this is something my friend taught me. It describes basic
    interaction with the user, while showing basic functionality of this simple programm. So, without
    further ado, we're off to the tutorial: First of all, start your visual basic, when prompted
    for new project, select Standard Exe . Next, we need to open code window, so we can start typing
    the program. This can be done in two ways, one is double clicking on the form, or selecting Code
    from View menu. If you double clicked on the form, you will see following text: CODE ....
  24. Checking The Web Site Speed
    (10)
    Did you taking too much time to access your favorite sites? Probably the problem is on the server
    used by those sites. To make sure that is the problem, use Windows PING facility. Ping is a small
    program, which sends a 32-bit signal to the Web site server. Next, Ping record the time needed by
    the server to answer it. To activate Ping: Click on the Start-Run menus, type command, and then
    click OK. Type PING "site name" in the MS-DOS prompt window, for example PING www.yahoo.com. In a
    moment, the result will appear on the screen. A result less than 300ms is normal spee....
  25. Php/mysql Login/register
    Tutorial for login with databases. (4)
    Start register code. Register.php CODE Username: Email: Pass: Verify
    Pass: //Login to your database. Make the fields of course..
    mysql_connect("localhost","user","pass"); mysql_select_db("database"); //end //if registering,
    check fields. if ($action == register) { if (!$user || !$pass || !$email || !$vpass) {  print
    "You must fill out all fields.";  exit; } $dupe1 = mysql_num_rows(mysql_query("select * from
    table where user='$user'")); if ($dupe1 > 0) {  print "Someone already has that
    username.";  exit....
  26. Php Quiz Script
    Make quizzes for your site. (29)
    Hello all, A little bit back I decided to make a quiz scriptjust out of no where lol. However it
    doesnt do anything special but I am going to make an email mod for it so that it will email results
    to your email address. So here is the basis of it. INSTRUCTIONS: Open a new page in your text
    editor and paste in the following code. CODE $qid = "Quiz ID-00"; ?>
    Username: 1.) Question number one is? Answer1 Answer2 2.) Question number two is?
    Answer1 Answer2 3.) Question number three is? Answer1 Answer2 4.) Question num....
  27. Complete Login And Registration System
    doesn't use mysql! (9)
    kLogin 0.1 QUOTE(readme.txt) Readme file to kLogin 0.1 To use the internet explorer fix:
    download the latest IE7 ZIP file
    (http://sourceforge.net/project/showfiles.php?group_id=109983&package_id=119707) Extract the ie7
    zip file to the root directory of your web server. Example, if you are using a unix/linux server,
    it's on "public_html/" or "home/public_html" Open kLogin.php file with your editor and edit the
    $info_text or $info_txt variable. Then, extract the kLogin.php file in to the root directory of
    your web server also. Just run kShoutBox.php If ....
  28. Php Emailer/contact System
    An email or contact system for your site (20)
    Hello all, Here is an easy Emailer or Contact system that allows visitors or members of your site
    to email you just by filling out a form. So here is what you need to do to set it up. First open up
    a new page in your text editor and paste in the following code. CODE $Name = $_POST ; $Subject
    = $_POST ; $Email = $_POST ; $Site = $_POST ; $Message=$_POST ; $align = $_POST ; $to = "$EmailTo";
    $subject = "$Subject"; $body = "$Message\n\n\n$Site\nBy: $Name"; $headers = "From: $Email\n";
    mail($to,$subject,$body,$headers); // After they've clicked "Send", this is whe....
  29. Php Simple Login Tutorial
    Learn how to make a simple login! (75)
    I have been quite busy lately, trying to design and code my site (far from done XD). And after
    having learned how to make a simple login, I will try to write my own tutorial, for you
    /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> the tutorial Step 1
    : The first step in designing a member system is to plan out exactly what you need. A common impulse
    among programmers is to jump right in and start coding. I'll be honest and admit that I'm
    guilty of this more so than anyone. However, since I'm in control of this conversation (y....
  30. Complete Login System
    With PHP + MYSQL (57)
    Its an complete login sistem made and tested by me and I think itwill be very usefull for people who
    are tryn to learn PHP. First, let's make register.php: CODE include("conn.php"); //
    create a file with all the database connections if($do_register){ // if the submit button were
    clicked if((!$name) || (!$email) || (!$age) || (!$login) || (!$password) || (!$password2)){ print
    "You can't let any fields in blank.\n"; // if the user did not put some field exit; } $name =
    stripslashes($name); $email = stripslashes($email); $age = stripslashes($age); $login = s....

    1. Looking for put, phpbb, login, box, main, site, code, php, included
Similar
[aef] Most Recent Topics Listing Mod - on your Web-site pages
Create Dynamic Html/php Pages Using Simple Vb.net Code - Taking your application data, and creating a webpage for others to vie
Add Flashing Inbox To Invisionfree Forum - Html code for invsiionfree!!
How To Make An Ultimate Game List. - If you're making a site on video games or such.
Simple Stylesheet Tutorial - Stylesheet embedded in your site.
[php] Clean Code Functions - Clean up your html output from php scripts
[phpbb] Member Last-visit Report Script - for phpbb2 databases
How To Set Up A Bookmarking System On Wii - Use your favorite social bookmarking site.
To Automatically Run Command When Login / Logoff
Create A Google Seach Result Page Embed Within Your Site Page.
Php Word Filter - Have you accidently sworn on your site? Or do you want to keep visitor
Nice Clean Php Layout Coding. - Learn a nice neat way to code your layouts with php
Uploading Images To Phpbb Galleries
Simple Php Login And Registration System
Faux Ajax Loading - Css Only - Pretend your site is Ajax based
Your First Autoit - Learning To Code..
How To: Make A Simple Php Site - Making one file show up on all pages using php
Automatic Login - in WinXP
Phpbb Forum Site Transfer - How to do it, step by step instructions
How To Create A Phpbb Fm - Create a Fully Modded forum.
Css And Javascript Combined For Dynamic Layout - use of different CSS files at same site
How To Make A Very Simple Wap Site - A quick tutorial about WML language
Simple Login In Visual Basic 6 - user interaction example trough login programm
Checking The Web Site Speed
Php/mysql Login/register - Tutorial for login with databases.
Php Quiz Script - Make quizzes for your site.
Complete Login And Registration System - doesn't use mysql!
Php Emailer/contact System - An email or contact system for your site
Php Simple Login Tutorial - Learn how to make a simple login!
Complete Login System - With PHP + MYSQL

Searching Video's for put, phpbb, login, box, main, site, code, php, included
See Also,
advertisement


How To Put A Phpbb Login Box On Your Main Site. - Code and .php included!!!

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com