Jump to content

Registration Form = Forum + Main Site

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
jthom263

jthom263

    Learning Programmer

  • Members
  • PipPipPip
  • 74 posts
Hello :)

I Have Downloaded This Login System PHP Login Script - Installation Instructions, I Am Planning To Use It On My New Website Which Is Still In Development But The Forum For It Is Already Up And Running Using phpBB. I Was Wondering is if it is possible add a tick box to the registration form for the website That says "Also Sign Me Up For The Forum" And When Ticked It Also Adds An Entry In The SQL Database Of phpBB as a new user?

If This Is Possible Could Someone Please Help me To Accomplish it?

Any Help Would Be Dearly Appreciated. :)
Thanks. Jack :lol:
:)

#2
Bioshox

Bioshox

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 207 posts
You could tapp it up yourself, so yeah it is possible.

You could migrate together both the phpBB database, and the one for your website, and have them using the same credentials.

Everything has to correspond though, otherwise phpBB won't work.

#3
jthom263

jthom263

    Learning Programmer

  • Members
  • PipPipPip
  • 74 posts
Ok Thanks For The Reply Would You Know How To Do It?
:)

#4
vsofttechnology

vsofttechnology

    Newbie

  • Members
  • Pip
  • 1 posts
<?php

if(isset($_GET['username']{0}) and isset($_GET['password']{0})){

// Register code here

}
else
echo "Please fill the user name and passowrd";
?>

vsofter
VSoft Technology - web sites , software , web application providers

#5
jthom263

jthom263

    Learning Programmer

  • Members
  • PipPipPip
  • 74 posts
Thank-You Very Much I'll Try It :)
:)