I have saved it in my phpbb3root/includes folder
I'm guessing i have to include this file in my page somewhere, could you give me some pointers of getting it working.

Code: Select all
include($phpbb_root_path . 'includes/lib/phpbb_confirm_handler.' . $phpEx);
Code: Select all
// Confirm types
define('CONFIRM_REG', 1);
define('CONFIRM_LOGIN', 2);
define('CONFIRM_POST', 3);
Code: Select all
define('CONFIRM_CONTACT', 666); // 666 - the number of the contact form
Code: Select all
$phpbb_confirm = new phpbb_confirm_handler(CONFIRM_CONTACT);
Code: Select all
$confirm_id = request_var('confirm_id', '');
$confirm_code = request_var('confirm_code', '');
Code: Select all
if (!$confirm_id || !$phpbb_confirm->check($confirm_id, $confirm_code))
{
$error[] = $user->lang['CONFIRM_CODE_WRONG'];
}
Code: Select all
$confirm_image = $phpbb_confirm->confirm_image($config['contact_max_attempts'], $confirm_id);
$s_hidden_fields = build_hidden_fields(array('confirm_id' => $confirm_id));
Code: Select all
<!-- IF S_CONFIRM_CODE -->
<div class="panel">
<div class="inner"><span class="corners-top"><span></span></span>
<h3>{L_CONTACT_CONFIRM}</h3>
<p>{L_CONTACT_CONFIRM_EXPLAIN}</p>
<fieldset class="fields2">
<dl>
<dt><label for="confirm_code">{L_CONFIRM_CODE}:</label></dt>
<dd>{CONFIRM_IMG}</dd>
<dd><input type="text" name="confirm_code" id="confirm_code" size="8" maxlength="8" class="inputbox narrow" title="{L_CONTACT_CONFIRM}" tabindex="6" /></dd>
<dd>{L_CONFIRM_CODE_EXPLAIN}</dd>
</dl>
</fieldset>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- ENDIF -->
Code: Select all
<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
// start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('posting');
// variable definition
$page_title = "Application Form";
// app detail
$cname = $_POST['charname'];
$class = $_POST['charclass'];
$spec = $_POST['specratio'];
$serv = $_POST['realm'];
$carmory = $_POST['chararmory'];
$cemail = $_POST['playeremail'];
$age = $_POST['ageid'];
$vent = $_POST['ventid'];
$raidsch = $_POST['raidsch'];
$prevguild = $_POST['prevguild'];
$raidexp = $_POST['preraidexp'];
$reference = $_POST['reference'];
$whyapp = $_POST['whyapp'];
$addinfo = $_POST['addinfo'];
$gearset = $_POST['gearset'];
$wwsreport = $_POST['wwsreport'];
$canswer1 = $_POST['canswer1'];
$canswer2 = $_POST['canswer2'];
$canswer3 = $_POST['canswer3'];
$classmod = $_POST['clasmod'];
// format message body and subject
$message = "[color=#40FF00][b]Character name : [/b][/color] [armory=" . $_POST['realm'] . "]" . $cname . "[/armory] \n" . "[color=#40FF00][b]Character class : [/b][/color]" . $class . "\n" . "[color=#40FF00][b]Realm : [/b][/color]" . $_POST['realm'] . "\n" . "[color=#40FF00][b]Armory link : [/b][/color][url]" . $carmory . "[/url]" . "\n" . "[color=#40FF00][b]Contact email: [/b][/color]" . $cemail . "\n" . "\n" . "[color=#40FF00][b]Age: [/b][/color]" . $age . "\n" . "[color=#40FF00][b]Vent, Threat Meter and Boss Mod: [/b][/color]" . $vent . "\n". "\n" . "[color=#40FF00][b]Conflict with raiding schedule : [/b][/color]" . "\n" . $_POST['raidsch'] . "\n" . "\n" . "[color=#40FF00][b]Previous guilds information : [/b][/color]" . "\n" . $prevguild . "\n" . "\n" . "[color=#40FF00][b]What Class specific Mods do you use? : [/b][/color]" . "\n" . $classmod . "\n" . "\n" . "[color=#40FF00][b]Previous raiding experience : [/b][/color]" . "\n" . $raidexp . "\n" . "\n" . "[color=#40FF00][b]Other gear sets : [/b][/color]" . "\n" . $_POST['gearset'] . "\n" . "\n" . "[color=#40FF00][b]Additional information : [/b][/color]" . "\n" . $addinfo . "\n" . "\n" ;
$subject = $class . " - " . $cname . " - " . $spec;
$submit = (isset($_POST['submit'])) ? true : false;
// the forum ID that the app is going to be posted
$forum_id = 5;
// submit the post
if ($submit)
{
if ( $message != '' )
// variables to hold the parameters for submit_post
$poll = $uid = $bitfield = $options = '';
generate_text_for_storage($subject, $uid, $bitfield, $options, false, false, false);
generate_text_for_storage($message, $uid, $bitfield, $options, true, true, true);
$data = array(
'forum_id' => 5,
'icon_id' => false,
'enable_bbcode' => true,
'enable_smilies' => true,
'enable_urls' => true,
'enable_sig' => true,
'message' => $message,
'message_md5' => md5($message),
'bbcode_bitfield' => $bitfield,
'bbcode_uid' => $uid,
'post_edit_locked' => 0,
'topic_title' => $subject,
'notify_set' => false,
'notify' => false,
'post_time' => 0,
'forum_name' => '',
'enable_indexing' => true,
);
submit_post('post', $subject, '', POST_NORMAL, $poll, $data);
// forward to the front page
header( 'Location: http://location.of.where.u.want.them.taken.2.after.submit.com' ) ;
}
// output the page
page_header($page_title);
$template->set_filenames(array(
'body' => 'application.html')
);
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
page_footer();
?>
Code: Select all
<!-- INCLUDE overall_header.html -->
<script type="text/javascript" language="javascript">
</script>
<table width="90%" border="0" cellpadding="0" cellspacing="0" align="center">
<tr><td>
<br />
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><span class="gen">Thank you for your application to THE END. Please fill out all the parts of the form correctly or your application will be instantly dismissed with out any attempt to evaluate you.</span><br />
</td>
</tr>
</table>
<br />
<hr />
<div id="app_content">
<form name="send" action="{S_SEND_ACTION}" method="post">
<table width="100%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td><span class="gen">Character Name:<br /></span></td>
<td><input name="charname" type="text" class="post" id="charname" size="25" /></td>
</tr>
<tr>
<td><span class="gen">Class / Prefered Spec:<br /></span> </td>
<td><select name="charclass" id="charclass">
<option value="Druid - Restoration">Druid - Restoration</option>
<option value="Druid - Feral">Druid - Feral</option>
<option value="Druid - Balance">Druid - Balance</option>
<option value="Hunter - Beast Mastery">Hunter - Beast Mastery</option>
<option value="Hunter - Marksmanship">Hunter - Marksmanship</option>
<option value="Hunter - Survival">Hunter - Survival</option>
<option value="Mage - Arcane">Mage - Arcane</option>
<option value="Mage - Fire">Mage - Fire</option>
<option value="Mage - Frost">Mage - Frost</option>
<option value="Paladin - Holy">Paladin - Holy</option>
<option value="Paladin - Protection">Paladin - Protection</option>
<option value="Paladin - Retribution">Paladin - Retribution</option>
<option value="Priest - Holy">Priest - Holy</option>
<option value="Priest - Discipline">Priest - Discipline</option>
<option value="Priest - Shadow">Priest - Shadow</option>
<option value="Rogue - Assassination">Rogue - Assassination</option>
<option value="Rogue - Combat">Rogue - Combat</option>
<option value="Rogue - Subtlety">Rogue - Subtlety</option>
<option value="Shaman - Restoration">Shaman - Restoration</option>
<option value="Shaman - Enhancement">Shaman - Enhancement</option>
<option value="Shaman - Elemental">Shaman - Elemental</option>
<option value="Warlock - Destruction">Warlock - Destruction</option>
<option value="Warlock - Affliction">Warlock - Affliction</option>
<option value="Warlock - Demonology ">Warlock - Demonology</option>
<option value="Warrior - Protection">Warrior - Protection</option>
<option value="Warrior - Fury">Warrior - Fury</option>
<option value="Warrior - Arms">Warrior - Arms</option>
<option value="Death Knight - Blood">Death Knight - Blood</option>
<option value="Death Knight - Frost">Death Knight - Frost</option>
<option value="Death Knight - Unholy">Death Knight - Unholy</option>
</select></td>
</tr>
<tr>
<td><span class="gen">Spec Ratios (xx/xx/xx):<br /></span></td>
<td><input name="specratio" type="text" class="post" id="specratio" size="25" /></td>
</tr>
<tr>
<td><span class="gen">Realm:<br /></span></td>
<td><input name="realm" type="text" class="post" id="realm" size="25" /></td>
</tr>
<tr>
<td><span class="gen">Armory Link in PvE Gear (Log out of WoW in your PvE Gear): <br /> </span></td>
<td><input name="chararmory" type="text" class="post" id="chararmory" size="70" value="http://" /></td>
</tr>
<tr>
<td><span class="gen">Contact Email: <br /></span></td>
<td><input name="playeremail" type="text" class="post" id="playeremail" size="40" /></td>
</tr>
<tr>
<td><span class="gen">Age:<br /></span> </td>
<td><select name="ageid" id="ageid">
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
<option value="32">32</option>
<option value="33">33</option>
<option value="34">34</option>
<option value="35">35</option>
<option value="36">36</option>
<option value="37">37</option>
<option value="38">38</option>
<option value="39">39</option>
<option value="40">40</option>
<option value="41">41</option>
<option value="42">42</option>
<option value="43">43</option>
<option value="44">44</option>
<option value="45">45</option>
<option value="46">46</option>
<option value="47">47</option>
<option value="48">48</option>
<option value="49">49</option>
<option value="50+">50+</option>
</select></td>
</tr>
<tr>
<td><span class="gen">Requirments to raid with us is Ventrillo and a working mic, a threat meter mod (we recommend <a href="http://www.wowinterface.com/downloads/info8459-OmenThreatMeter.html" TARGET="_blank">Omen Threat meter</a>) and a Boss Mod pack (we recommend <a href="http://www.wowinterface.com/downloads/info8814-DeadlyBossMods.html" TARGET="_blank">Deadly Boss Mods</a>). Do you have all these requirments met?:<br /></span> </td>
<td><select name="ventid" id="ventid">
<option value="Yes">Yes</option>
<option value="No">No</option>
</select></td>
</tr>
</table>
<hr />
<table width="100%" border="0" cellpadding="3" cellspacing="1">
<tr>
<td width="50%"><span class="gen">During progression we raid 3 days a week 5:00pm (GMT -8 / Stonemaul Local Server Time) and usually stopping around 8:00pm (GMT -8 / Stonemaul Local Server Time). Do you have any conflicts with this? You will be expected to retain a 75% attendance ratio. This mean being online on alts even if NOT in the raid for subs on certain bosses.</span></td>
<td width="50%"><textarea class="post" name="raidsch" cols="50" rows="5" id="raidsch"></textarea></td>
</tr>
<tr>
<td><span class="gen">What guilds (include server) have you been tagged under and what were your reasons for leaving them?</span></td>
<td><textarea class="post" name="prevguild" cols="50" rows="5" id="prevguild"></textarea></td>
</tr>
<tr>
<td><span class="gen">Please list any class specific Mods you use. (Eg:- <a href="http://www.wowinterface.com/downloads/info6096-HealBotcontinued.html" TARGET="_blank">Healbot</a>, <a href="http://www.wowinterface.com/downloads/info4937-Decursive.html" TARGET="_blank">Decursive</a>, <a href="http://www.wowinterface.com/downloads/info4676-Buffwatch.html" TARGET="_blank">Buffwatch++</a>) Some mods may be required for you to install to raid.</span></td>
<td><textarea class="post" name="clasmod" cols="50" rows="5" id="clasmod"></textarea></td>
</tr>
<tr>
<td><span class="gen">What raiding experience do you have, in Classic, TBC and WOTLK?</span></td>
<td><textarea class="post" name="preraidexp" cols="50" rows="5" id="preraidexp"></textarea></td>
</tr>
<tr>
<td><span class="gen">What sets of gear do you have besides the one shown on your armory?</span></td>
<td><textarea class="post" name="gearset" cols="50" rows="5" id="gearset"></textarea></td>
</tr>
<tr>
<td><span class="gen">Is there anything else you would like to add?</span></td>
<td><textarea class="post" name="addinfo" cols="50" rows="5" id="addinfo"></textarea></td>
</tr>
</table>
<hr />
<br />
<br />
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="forumline">
<tr>
<td align="center"><input class="btnmain" type="submit" name="submit" value="{L_SUBMIT}" /> <input class="btnlite" type="reset" value="{L_RESET}" /></td>
</tr>
</table>
</form>
</div>
</td></tr>
</table>
<br clear="all" />
<br clear="all" />
<div align="{S_CONTENT_FLOW_END}"><!-- INCLUDE jumpbox.html --></div>
<!-- INCLUDE overall_footer.html -->
Users browsing this forum: CommonCrawl [Bot] and 0 guests