View Single Post
  #8  
Old 03-04-2001, 08:52 PM
Guest
 
Posts: n/a
Default

im working on something very similar for my site, and here is what i've pieced together..
register.php
PHP Code:
<?
/*********************************************************************************************
Checking remote post-registering temp file
register.php

*********************************************************************************************/
if($Submit) {
$db_reg=PostToHost("www.yoursite.com","/path/to/forums/register.php","username=".urlencode($username)."&password=".urlencode($password)."&passwordconfirm=".urlencode($password)."&email=".urlencode($email)."&emailconfirm=".urlencode($email)."&homepage=".urlencode($homepage)."&icq=".urlencode($icq)."&aim=".urlencode($aim)."&yahoo=".urlencode($yahoo)."&allowmail=".urlencode($allowmail)."&invisible=".urlencode($invisible)."&showemail=".urlencode($showemail)."&cookieuser=yes&nosessionhash=yes&receivepm=no&emailonpm=no&pmpopup=no&prunedays=-1&umaxposts=-1&startofweek=1&timezoneoffset=-5&emailnotification=no&newstyleset=1&action=addmember&submit=submit"); 
header("Location: http://www.yoursite.com/yay.shtml");
exit;
} else {
include "./registerinc.php";
exit;
}
/*********************************************************************************************
variables sent to registration for forum for future reference in easy to read format ;D
username=".urlencode($username)."&
password=".urlencode($password)."&
passwordconfirm=".urlencode($password)."&
email=".urlencode($email)."&
emailconfirm=".urlencode($email)."&

homepage=".urlencode($homepage)."&
icq=".urlencode($icq)."&
aim=".urlencode($aim)."&
yahoo=".urlencode($yahoo)."&

allowmail=".urlencode($allowmail)."&
invisible=".urlencode($invisible)."&
showemail=".urlencode($showemail)."&
cookieuser=yes&
nosessionhash=yes&
receivepm=no&
emailonpm=no&
pmpopup=no&
prunedays=-1&
umaxposts=-1&
startofweek=1&
timezoneoffset=-5&
emailnotification=no&
newstyleset=1&
action=addmember&
submit=submit.""
*********************************************************************************************/

function PostToHost($host, $path, $data_to_send) { 
  $fp = fsockopen($host,80); 
  fputs($fp, "POST $path HTTP/1.1\n"); 
  fputs($fp, "Host: $host\n"); 
  fputs($fp, "Content-type: application/x-www-form-urlencoded\n"); 
  fputs($fp, "Content-length: ".strlen($data_to_send)."\n"); 
  fputs($fp, "Connection: close\n\n"); 
  fputs($fp, $data_to_send); 
  while(!feof($fp)) { 
    return fgets($fp, 128); 
  } 
  fclose($fp); 

?>
and then we need to have the form, so make registerinc.php
Code:
<html>
<head>
<title>Register</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#000000" text="#FFFFFF"><FORM METHOD=POST ACTION="register.php"><table border=0 cellspacing=1 cellpadding=4 width="100%">
<tr bgcolor="#333366">
<td colspan=2>
<FONT face="verdana, arial, helvetica, sans-serif" size="2"  color="#99cccc" class=thtcolor><b>Registration: Required Information </b></font><FONT face="verdana, arial, helvetica, sans-serif" size="1"  color="#99cccc" class=thtcolor>All fields are required.  Please note that passwords are case sensitive.</font></td>
</tr>

<tr bgcolor="#000033">

<TD><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><B>User Name:</B></font></TD>
<TD><INPUT TYPE="TEXT" NAME="username" SIZE=25 MAXLENGTH=25>
</TD>
</TR>

<TR bgcolor="#111144">
<TD><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><B>Password:</B></font></TD>
<TD><INPUT TYPE="PASSWORD" NAME="password" SIZE=25 MAXLENGTH=15> </TD></TR>

<TR bgcolor="#000033">
<TD><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><B>Email:</B></font><br>
<FONT face="verdana, arial, helvetica, sans-serif" size="1" >Please enter a valid email address. You can choose to hide it below in the preferences section.</font></TD>
<TD><INPUT TYPE="TEXT" NAME="email" SIZE=25 MAXLENGTH=50>
</TD>
</TR>

<tr bgcolor="#333366">
<td colspan=2>
<FONT face="verdana, arial, helvetica, sans-serif" size="2"  color="#99cccc" class=thtcolor><b>Optional Information </b></font><FONT face="verdana, arial, helvetica, sans-serif" size="1"  color="#99cccc" class=thtcolor>All information will be viewable by other Tribalwar Forums members.</font>
</td></tr>

<TR bgcolor="#111144">
<TD><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><B>Homepage:</B></font></TD>
<TD><INPUT TYPE="TEXT" NAME="homepage" VALUE="http://" SIZE=25 MAXLENGTH=100>
</TD></tr>

<TR bgcolor="#000033">
<TD><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><B>ICQ Number:</B></font></TD>
<TD><INPUT TYPE="TEXT" NAME="icq" SIZE=25 MAXLENGTH=20>
</TD></tr>

<tr bgcolor="#111144">
<td>
<B><FONT face="verdana, arial, helvetica, sans-serif" size="2" >AOL Instant Messenger Handle:</font></B>
</td>
<td>
<INPUT TYPE="TEXT" NAME="aim" SIZE=25 MAXLENGTH=20>
</td></tr>

<tr bgcolor="#000033">
<td>
<B><FONT face="verdana, arial, helvetica, sans-serif" size="2" >Yahoo Messenger Handle:</font></B>
</td>
<td>
<INPUT TYPE="TEXT" NAME="yahoo" SIZE=25 MAXLENGTH=20>
</td></tr>

<tr bgcolor="#333366">
<td colspan=2>
<FONT face="verdana, arial, helvetica, sans-serif" size="2"  color="#99cccc"><b>Preferences</b></font></td>
</tr>

<TR bgcolor="#111144">
<TD><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><B>Allow Bulletin Board Administrators and Moderators To Send You Email Notices?</B></font></TD>
<TD><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><INPUT TYPE="RADIO" NAME="allowmail" VALUE="yes" CHECKED> yes <INPUT TYPE="RADIO" NAME="allowmail" VALUE="no"> no</font>
</TD></tr>

<tr bgcolor="#000033">
<TD valign=top><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><B>Invisible Mode:</b><br>
<FONT face="verdana, arial, helvetica, sans-serif" size="1" >Selecting yes allows you to surf the forums without appearing in the 'Logged In Users' list.</font>
</font></TD>
<TD valign=top><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><INPUT TYPE="RADIO" NAME="invisible" VALUE="yes" > yes <INPUT TYPE="RADIO" NAME="invisible" VALUE="no" checked>
 no</font></TD>
</TR>

<tr bgcolor="#111144">
<TD valign=top><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><B>Hide Email Address:</b><br>
<FONT face="verdana, arial, helvetica, sans-serif" size="1" >Clicking yes hides your email address in your public profile, so that it is not accessible by other users.</font>
</font></TD>
<TD valign=top><FONT face="verdana, arial, helvetica, sans-serif" size="2" ><INPUT TYPE="RADIO" NAME="showemail" VALUE="no" > yes <INPUT TYPE="RADIO" NAME="showemail" VALUE="yes" checked>
 no</font></TD>
</TR>
</TABLE>

<p align="center">
<INPUT TYPE="HIDDEN" NAME="action" VALUE="addmember">
<INPUT TYPE="SUBMIT" NAME="Submit" VALUE="Submit">
<INPUT TYPE="RESET" NAME="Reset" VALUE="Reset">
</p>
</form>

</body>
</html>
works for me. what i like about it, is that if i want to i can just add more function calls to 'posttohost' utilizing whatever vars the registration for any given form needs (the above is for vb2.0, and it auto-sets some things to default, so the base register page is more generic) but you can modify it easilly to work for most anything
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01204 seconds
  • Memory Usage 1,809KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete