| Server IP : 74.208.236.52 / Your IP : 216.73.217.98 Web Server : Apache System : Linux infong527 4.4.400-icpu-115 #2 SMP Mon Jul 6 08:15:05 UTC 2026 x86_64 User : u44043973 ( 5404757) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/18/d194259149/htdocs/bonus1/members/ |
Upload File : |
<?php
session_start();
include "../config.php";
include "../header.php";
include "../style.php";
if( ($userid<>"")&&($password<>"") ) {
include("navigation.php");
include("../banners.php");
echo "<font size=2 face='$fonttype' color='$fontcolour'><p><center>";
?>
<center>
<p><font size=6>Edit My Details</font></p>
<form method="POST" action="editnow.php"><br>
Name:<br><input type="text" name="Name" value="<? echo $name; ?>"><br>
<input type="hidden" name="Userid" value="<? echo $userid; ?>">
Password:<br><input type="password" name="Password" value="<? echo $password; ?>"><br>
Password Verification:<br><input type="password" name="Password2" value="<? echo $password; ?>"><br>
Email:<br><input type="text" name="ContactEmail" value="<? echo $contact_email; ?>"><br>
Paypal Email:<br><input type="text" name="PaypalEmail" value="<? echo $paypal_email; ?>"><br>
Alertpay Email:<br><input type="text" name="AlertpayEmail" value="<? echo $alertpayemail; ?>"><br>
<br><br><br>
<input type="hidden" name="oldemail" value="<? echo $contact_email; ?>">
<input type="submit" value="Update">
</form>
</center>
<? if ($verified != 1) { ?>
<center><p>Your account is unverified, click this button to have your verification email resent.</p>
<form method="POST" action="resendv.php">
<input type="hidden" name="userid" value="<? echo $userid; ?>">
<input type="hidden" name="email" value="<? echo $contact_email; ?>">
<input type="submit" value="Resend">
</form>
</center>
<?
}
echo "</font></td></tr></table>";
}
else
{ ?>
<font size=3 face="<? echo $fonttype; ?>" color="<? echo $fontcolour; ?>"><p><b><center>You must be logged in to access this site. Please <a href="../index.php">click here</a> to login.</p></b></font>
<? }
include "../footer.php";
mysql_close($dblink);
?>