i want you to be able to send a request to enter a faction...
to connect to the database use
<?
$pagetitle="Send Request";
include("../include/head.php");
echo $harsss;
?>
and here is the table you'll need
factions
the feilds are
factionid, name, boardid
I want there to be a list of all the current factions on the left with a radio check box next to each of them.
$sql="SELECT * FROM factions ORDER BY factionid";
$result=@mysql_query($sql)";
while ($myrow=@mysql_fetch_array($result)) {
echo "<tr><td align="center">".$myrow["name"]."</td></tr>";
then on the right a space where you can enter a message and then a Submit button.
When you click the Submit button i want it to make a topic on the faction board.
The person who clicked the Submit button will be the topic creator and the message would say like...
User 'username' has sent a request to join 'factioname'.
'username' has sent the following message.
'message'