inscription3.php
<?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);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup(); // fichier de langue
page_header('Inscription');
if (($_POST['telephone']!='')&&($_POST['marital']!='')&&($_POST['country']!='')&&($_POST['sexe']!=''))
{INSERT INTO phpbb_users (user_phone,user_marital,user_country,user_sexe) Values ($_POST['telephone'],$_POST['marital'],$_POST['country'],$_POST['sexe']) ; }// ajouter les donnés dans la BDphpbb3
$template->set_filenames(array(
'body' => 'inscription7_body.html'
)); // fichier de théme
make_jumpbox(append_sid("{$phpbb_root_path}index.$phpEx"));
page_footer();
?>
inscription-_body.html
<div class="panel">
<div class="inner">
<span class="corners-top"><span></span></span>
<div class="content"><p>
Please fill the register blancks ...
<FORM Method="POST" Action="http://localhost/phpbb3/inscription3_bd.php"> <br />
Formation and Skills : <br /> Veuillez donner vos experiences <textarea name="formation" rows="8" cols="45"></textarea> <br /> <br /> <br /> <br /> <br /> <br /> <br />
Intersts : <br /> Veuillez lister vos intérets <textarea name="interests" rows="8" cols="45"></textarea> <br /> <br /> <br /> <br /> <br /> <br /> <br />
Job : <select name="job">
<option value="ingénieur">ingénieur</option>
<option value="CEO">CEO</option>
<option value="head work">head work</option>
</select> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br />
<center> <INPUT TYPE=SUBMIT VALUE="Next Step"></FORM> <br /><br /> </center>
<center> <a href="http://localhost/phpbb3/inscription2.php"> Second Step </a> </center>
</p>
</div>
<span class="corners-bottom"><span></span></span>
</div>
</div>
<!-- INCLUDE jumpbox.html -->
<!-- INCLUDE overall_footer.html -->