<?PHP
session_start();
require_once("includes/configuration.php");
require_once("includes/classes/class.database.php");
require_once("includes/classes/class.question.php");
require_once("includes/classes/class.langauge.php");
require_once("includes/classes/class.user.php");
require_once("includes/classes/class.country.php");
require_once "includes/fileoperation.php";
$objMember = new user();
$objCountry = new country();
$objLanguage = new language();
$rsLanguage = $objLanguage->GetList(array(array('languageid','!=',"")),'language',true);
if($_SESSION['languageid'] == '' || $_SESSION['languageid'] == 0) {
for($i=0;$i<count($rsLanguage);$i++) {
if($rsLanguage[$i]->language_name == "English") {
$language_id = $rsLanguage[$i]->languageId;
}
}
}
else {
$language_id = $_SESSION['languageid'];
}
if($HTTP_POST_VARS['cmdAdd']=='Add'){
require('includes/classes/php-captcha.inc.php');
if (PhpCaptcha::Validate($_POST['captcha'])) {
$objMember->first_name=($HTTP_POST_VARS['txtfname']);
$objMember->last_name=($HTTP_POST_VARS['txtlname']);
$objMember->emailid=$HTTP_POST_VARS['txtmail'];
$objMember->address=($HTTP_POST_VARS['txtAddress']);
$objMember->city=$HTTP_POST_VARS['txtcity'];
$objMember->state=$HTTP_POST_VARS['txtstate'];
$objMember->zipcode=$HTTP_POST_VARS['txtzip'];
$objMember->countryid=$HTTP_POST_VARS['cmbCountry'];
$objMember->languageid=$HTTP_POST_VARS['cmbLanguage'];
$objMember->username=($HTTP_POST_VARS['txtuname']);
if($_FILES['txtphoto']['name'] != '') {
$type = explode("/",$_FILES['txtphoto']['type']);
if($type[0] == 'image') {
resizeimage($_FILES['txtphoto'],"uploads/user");
$objMember->photo=$_FILES['txtphoto']['name'];
}
}
if($HTTP_POST_VARS['radActive']=='Active'){
$objMember->status='Active';
}else{
$objMember->status='Inactive';
}
if($HTTP_POST_VARS['txtpassword']==$HTTP_POST_VARS['txtRpassword']){
$objMember->password=$HTTP_POST_VARS['txtpassword'];
$HTTP_POST_VARS['cmdAdd']='';
$id=$objMember->Save();
$msg="Record added successfully.";
}
else{
$msg="Retype Password and Password both are same.";
}
} else {
$msg = 'Invalid code entered, Please try again later.';
}
}
// $rsLanguage =$objLanguage->GetList(array(array('languageid','!=',"")),'',true);
$rsCountry = $objCountry->GetList(array(array('countryId','!=','')),'',true);
?>
<?php include("includes/top.php");?>
<?php include("includes/search.php");?>
<DIV class=home id=y-body-green-knowledge-search>
<DIV id=content>
<?php include("includes/left.php");?>
<DIV id=middle>
<DIV id=ks-homepage-heading>Member Registration </DIV>
<DIV class=silk_hp_open id=ks-homepage-questions>
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr>
<td height="13px"></td>
</tr>
<tr>
<td><table width="100%" cellpadding="2" cellspacing="2" border="0">
<form name="frmCrRegister" id="frmCrRegister" method="post" enctype="multipart/form-data" action="createaccount.php" onsubmit="return frontcreateaccount();">
<input type="hidden" name="cmbLanguage" id="cmbLanguage" value="1" />
<tr>
<td colspan="3" align="center"><strong>
<?=$msg?>
</strong></td>
</tr>
<tr>
<td align="right"><span class="star"></span> First Name </td>
<td align="center">:</td>
<td align="left"><input type="text" name="txtfname" id="txtfname" value="<?PHP echo $rsEditMember[0]->first_name;?>" /></td>
</tr>
<tr>
<td align="right"><span class="star"></span> Last Name </td>
<td align="center">:</td>
<td align="left"><input type="text" name="txtlname" id="txtlname" value="<?PHP echo $rsEditMember[0]->last_name;?>" /></td>
</tr>
<tr>
<td align="right"><span class="star"></span> E-Mail</td>
<td align="center">:</td>
<td align="left"><input type="text" name="txtmail" id="txtmail" value="<?PHP echo $rsEditMember[0]->emailid;?>" /></td>
</tr>
<tr>
<td align="right">Address</td>
<td align="center">:</td>
<td align="left"><textarea name="txtAddress" id="txtAddress"><?PHP echo $rsEditMember[0]->address;?></textarea></td>
</tr>
<tr>
<td align="right">City</td>
<td align="center">:</td>
<td align="left"><input type="text" name="txtcity" id="txtcity" value="<?PHP echo $rsEditMember[0]->city;?>" /></td>
</tr>
<tr>
<td align="right">State</td>
<td align="center">:</td>
<td align="left"><input type="text" name="txtstate" id="txtstate" value="<?PHP echo $rsEditMember[0]->state;?>" /></td>
</tr>
<tr>
</tr>
<tr>
<td align="right">Country</td>
<td align="center">:</td>
<td align="left"><select name="cmbCountry">
<?PHP
for($i=0;$i<count($rsCountry);$i++){
if($rsCountry[$i]->countryId==$rsEditMember[0]->countryid){
?>
<option value="<?PHP echo $rsCountry[$i]->countryId;?>" selected="selected"><?PHP echo $rsCountry[$i]->countryname;?></option>
<?PHP
}else{?>
<option value="<?PHP echo $rsCountry[$i]->countryId;?>"><?PHP echo $rsCountry[$i]->countryname;?></option>
<?PHP
}
} ?>
</select>
</td>
</tr>
<!-- <tr>
<td align="right">Language </td>
<td align="center">:</td>
<td align="left"><select name="cmbLanguage">
<?PHP
for($i=0;$i<count($rsLanguage);$i++){
if($rsLanguage[$i]->languageId==$rsEditMember[0]->langid){
?>
<option value="<?PHP echo $rsLanguage[$i]->languageId;?>" selected="selected"><?PHP echo $rsLanguage[$i]->language_name;?></option>
<?PHP
}else{?>
<option value="<?PHP echo $rsLanguage[$i]->languageId;?>"><?PHP echo $rsLanguage[$i]->language_name;?></option>
<?PHP
}
}?>
</select>
</td>
</tr> -->
<tr>
<td align="right">Display Image</td>
<td align="center">:</td>
<td align="left"><input type="file" name="txtphoto" id="txtphoto" value="<?PHP echo $rsEditMember[0]->photo;?>" /></td>
</tr>
<tr>
<td align="right"><span class="star"></span> Username</td>
<td align="center">:</td>
<td align="left"><input type="text" name="txtuname" id="txtuname" value="<?PHP echo $rsEditMember[0]->username;?>" /></td>
</tr>
<tr>
<td align="right"><span class="star"></span> Password</td>
<td align="center">:</td>
<td align="left"><input type="password" name="txtpassword" id="txtpassword" value="<?PHP echo $rsEditMember[0]->password;?>" /></td>
</tr>
<tr>
<td align="right"><span class="star"></span> Re-Type Password </td>
<td align="center">:</td>
<td align="left"><input type="password" name="txtRpassword" id="txtRpassword" value="<?PHP echo $rsEditMember[0]->password;?>" /></td>
</tr>
<tr>
<td align="right">Enter the code shown</td>
<td align="center">:</td>
<td><img style="border:1px solid #316CA8;" src="includes/captcha.php" width="200" height="60" alt="Visual CAPTCHA" /></td>
</tr>
<tr>
<td colspan="2"> </td>
<td><input type="text" id="captcha" name="captcha" value="" />
<br />
This help you-ask-it to prevent automated registration.</td>
</tr>
<tr>
<td colspan="3" align="center"> </td>
</tr>
<tr>
<td align="center" colspan="3"><input type="submit" name="cmdAdd" id="cmdAdd" value="Add"/>
</td>
</tr>
</form>
</table></td>
</tr>
</table>
</DIV>
<DIV class=dotted-line></DIV>
<!-- <P class=more-link id=ks-more-link>
<FORM action=#><INPUT class=button type=submit value="More Open Questions >"></FORM>
</P> -->
</DIV>
</DIV>
</DIV>
<?php include("includes/bottom.php");?>