sorry...me again.....
I am attaching the PHP file that has been set up to register a new user with the jabber server. I am fairly certain that this could easily be edited easily to obtain the user info from the user's profile and pass it on to the jabber server....thus eliminating the need to have user's fill out complicated info that could be messed up
This portion:
Code:
enter the needed data:
<form type=post>
Username: <input type=text name=username> <br>
server: <input type=text name=server> <br>
email: <input type=text name=email> <br>
name: <input type=text name=name> <br>
old password: <input type=password name=oldpass> (Fill if changing passwords)<br>
new password: <input type=password name=password> <br>
<input type=submit>
</form>
is written in HTML, having escaped out of the PHP. That could just as easily be put into a template, and called from the script. Having the template parsed and using the globals, would allow it to be set so that the it was set to echo the user's existing info so that:
Username: $bbuserinfo[username]
etc.
Although i personally would prefer to preset the server, and have it as a hidden form variable, as i don't want random people using our server as a relay to others....but that is just me.