Server IP : 108.163.255.210 / Your IP : 3.15.202.169 Web Server : Apache System : Linux blossom.urlnameserver.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64 User : ( 1172) PHP Version : 7.2.34 Disable Function : eval,escapeshellarg,proc_close,proc_get_status,proc_nice,proc_open,symlink,system,pcntl_exec,getrusage,chown,chgp,closelog,openlog,syslog,define_syslog_variables,php_ini_loaded_file,getservbyname,getservbyport,posix_getgid,posix_getgrgid,proc_terminate,pfsockopen,apache_child_terminate,posix_mkfifo,posix_setpgid,posix_setuid,hypot,pg_host,pos,posix_access,posix_getcwd,posix_getservbyname,myshellexec,getpid,posix_getsid,posix_isatty,posix_kill,posix_mknod,posix_setgid,posix_setsid,posix_setuid,posix_times,posix_uname,ps_fill,posix_getpwuid,global,ini_restore,zip_open,zip_read,rar_open,bzopen,bzread,bzwrite,apache_get_modules,apache_get_version,phpversionphpinfo,php_ini_scanned_files,get_current_user,disk_total_space,diskfreespace,leak,imap_list,hypo,filedump,safe_mode,getmygid,apache_getenv,apache_setenv,bzread,bzwrite,bzopen,phpini,higlight_file,dos_conv,get_cwd,er_log,cmd,e_name,vdir,get_dir,only_read,ftok,ftpexec,posix_getpwnam,mysql_list_dbs,disk_free_space,session_save_path,confirm_phpdoc_compiled,zip_entry_rea,php_u,psockopen,crack_opendict,crack_getlastmessage,crack_closedict,crack_check,fpassthru,posix_get_last_error,posix_getlogin,posix_getgroups,posix_strerror,posix_getrlimit,posix_getpgrp,posix_getgrnam,pos,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/unilinki/www/binarygains.in/developer1/ |
Upload File : |
<?php include("config/error.php"); $memberid=addslashes($_REQUEST['memberid']); $userdet=mysql_fetch_array(mysql_query("select * from mlm_register where user_profileid='$memberid'")); $usrcountry=$userdet['user_country']; $usrstate=$userdet['user_state']; $usrcity=$userdet['user_city']; $usrdist=$userdet['user_district']; $usrpostal=$userdet['user_postalcode']; ?> <label for="form-field-1">Address 1 <span style="color:#FF0000;">*</span> : </label> <input style="margin-bottom:16px;" class="form-control" readonly="readonly" type="text" name="nomaddress" value="<?php echo $userdet['user_commaddr1']; ?>" id="naddr1" /> <label for="form-field-1">Address 2 : </label> <input style="margin-bottom:16px;" class="form-control" type="text" value="<?php echo $userdet['user_commaddr2']; ?>" name="nomarea" readonly="readonly" id="naddr2" /> <label for="form-field-1">Postal Code <span style="color:#FF0000;">*</span> : </label> <input style="margin-bottom:16px;" class="form-control" readonly="readonly" type="text" value="<?php echo $usrpostal;?>" name="nompostal" id="nzipcode" /> <label for="form-field-1">Country <span style="color:#FF0000;">*</span> : </label> <select style="margin-bottom:16px;" class="form-control" readonly="readonly" name="nomcountry" id="ncountry" onchange="return showstate1(this.value);"> <?php $sqlcon=mysql_query("select * from mlm_country where country_status='0' and country_id='$usrcountry'"); while($rowcountry=mysql_fetch_array($sqlcon)) { ?> <option value="<?php echo $rowcountry['country_id']; ?>"><?php echo $rowcountry['country_name']; ?></option> <?php } ?> </select> <label for="form-field-1">State <span style="color:#FF0000;">*</span> : </label> <select style="margin-bottom:16px;" class="form-control" readonly="readonly" name="nomstate" id="nstate" onchange="return cityshow1(this.value);"> <?php $sqlstate=mysql_query("select * from mlm_state where state_status='0' and country_id='$usrcountry' and state_id='$usrstate'"); while($rowstate=mysql_fetch_array($sqlstate)) { ?> <option value="<?php echo $rowstate['state_id']; ?>"><?php echo $rowstate['state_name']; ?></option> <?php } ?> </select> <label for="form-field-1">City <span style="color:#FF0000;">*</span> : </label> <select style="margin-bottom:16px;" class="form-control" readonly="readonly" name="nomcity" id="ncity" > <?php $sqlcity=mysql_query("select * from mlm_city where city_status='0' and city_id='$usrcity'"); while($rowcity=mysql_fetch_array($sqlcity)) { ?> <option value="<?php echo $rowcity['city_id']; ?>"><?php echo $rowcity['city_name']; ?></option> <?php } ?> </select>