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 :)
|