HEX
Server: nginx/1.18.0
System: Linux srv01 5.15.0-171-generic #181-Ubuntu SMP Fri Feb 6 22:44:50 UTC 2026 x86_64
User: RaviMohan (1026)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/SimranTrikha/bwebz.com/web/forgotscript/registration.php
<?php
include ('header.php');
$vidd=mysql_query('select * from registration WHERE registration_id order by registration_id ');
?>
<html>
<title>
REGISTRATION FORM
</title>
<head>
</head>
<body>
<form action="add_registration.php" method="post" enctype="multiple/form-data">
<table>
<tr><td><input type="hidden" name="t1" ></td></tr>

<tr><td><input type="text" name="t2" required placeholder="YOUR NAME"></td></tr>

<tr><td><input type="email" name="t3" required placeholder="YOUR EMAIL"></td></tr>

<tr><td><input type="password" name="t4" required placeholder="YOUR PASSWORD" maxlength="6"></td></tr>

<tr><td><input type="text" name="t5" required placeholder="YOUR NUMBER"></td></tr>

<tr><td><input type="text" name="t6" required placeholder="YOUR WEBSITE URL"></td></tr>

<tr><td><input type="submit" name="submit" value="SUBMIT" required ></td></tr>

</table>
</form>
													<?php
while($vid=mysql_fetch_array($vidd))
{
?><div class="left" style="float:left; margin:10px;">
	<table border="1">
	<tr><td style="color:#ff5252;"><b><u>Client Name: </u></b></td><td style=" font-size:17px;"><?php echo $vid['client_name'];?></td></tr>
	<tr><td style="color:#fd5401;"><b><u>Client Email: </u></b></td><td style=" font-size:17px;"><?php echo $vid['client_email'];?></td></tr>
	<tr><td style="color:#30b1ff;"><b><u>Client Password: </u></b></td><td style=" font-size:17px;"><?php echo $vid['client_pswd'];?></td></tr>
	<tr><td style="color:#75db1b;"><b><u>Client Number: </u></b></td><td style=" font-size:17px;"><?php echo $vid['client_number'];?></td></tr>
	<tr><td style="color:#ffd800;"><b><u>Client Website: </u></b></td><td style=" font-size:17px;"><?php echo $vid['client_url'];?></td></tr>
	
	
	</table>
	</div>
	
	
	
	

<?php 
				}
				?>
</body>
</html>