View Full Version : Need remote unlock source in PHP format


foufou
15-11-2004, 22:21
please help ;)
big thanks

stargsm_ro
15-11-2004, 23:08
For DCT3
[Only Registered Users Can See Links]

Remove txt extension!!!

stargsm_ro
15-11-2004, 23:09
For DCT4 // uso: [Only Registered Users Can See Links]

Remove txt extension.
File is PHP!

foufou
22-11-2004, 22:12
big thanks starGSM ro
it work 100% bat need start page please
1.000.000 thanks

stargsm_ro
22-11-2004, 23:54
What you need exactly?

foufou
23-11-2004, 11:52
I need start page whit form to input IMEI MCC+MNC type ...to creat automaticly links :confused:
when clic to submit bouton
some page is in attech file bat need edit to work whit your script.
big thanks
and if you have other calculat GSM :LG,Siemens Panasonic...
please post it
;)

foufou
27-11-2004, 02:59
any help please

ackxxx
26-02-2006, 20:57
<?php /*
------------------------------------------------------------------
--------- _AckxXx_ ->ACK-HOME_www ---------------
------------------------------------------------------------------
------ File = index.php
------ Ver. = v.0.1
-----------------------------------------------------------------
-------------------------------------------bR. AckxXx---------
------------------------------------------------------------------
-------------------------------------------------- FEB'06 ------
------------------------------------------------------------------ */

if (!isset($_GET['Type']) && !isset($_GET['imei']))
{ echo'<form name="Form1" method="GET" action="">
<table>
<select name="Type" >
<option>dct3</option>
<option>dct4</option>
</select>
<input type="Submit" value="ok" size="25" class="button">
</table>';
}
else
{ if (isset($_GET['imei']) )
{ echo '<p> IMEI ='.$_GET['imei'].'</p>';
@Include($_GET['type']);
}
}

if (isset($_GET['Type']) && ($_GET['Type']=='dct3'))
{ echo '<form name="Form2" method="GET" action="" enctype="">
<table>
<tr >
<td width="35%">IMEI </td>
<td><input name="imei" type="text" size="20" value=111111111111119></td>
<td><a href="" title="To find the imei number of your phone. Press *#06#"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr >
<td width="35%">NET </td>
<td><input name="net" type="text" size="20" value=22201></td>
<td><a href="" title="NETWORK code like 22201 (222=counrtry / 01=operator code) 2 find it: [Only Registered Users Can See Links]"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr>
<td width="35%">GID1 </td>
<td><input name="gid1" type="text" size="20" value=ADCC></td>
<td><a href="" title="4 DCT3 only: like ADCC"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr>
<td width="35%">GID2 </td>
<td><input name="gid2" type="text" size="20" value=44FF></td>
<td><a href="" title="4 DCT3 only: like 44FF"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr>
<td width="35%">MSIN</td>
<td><input name="msin" type="text" size="20" value=1234567890></td>
<td><a href="" title="4 DCT3 only: like 1234567890"><font size="-2" color="red">Help?</a></font></td>
</tr>
</table>
<p style="text-align: left;">
<input type="Submit" name="type" value="dct3.php" size="25" class="button">
</p>
</form> ';
}
if (((isset($_GET['Type'])) && ($_GET['Type']=='dct4')))
{ echo '<form name="Form3" method="GET" action="" enctype="">
<table>
<tr >
<td width="35%">IMEI </td>
<td><input name="imei" type="text" size="20" value=111111111111119></td>
<td><a href="" title="To find the imei number of your phone. Press *#06#"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr >
<td width="35%">NET </td>
<td><input name="net" type="text" size="20" value=22201></td>
<td><a href="" title="NETWORK code like 22201 (222=counrtry / 01=operator code) 2 find it: [Only Registered Users Can See Links]"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr >
<td width="35%">ASIC </td>
<td><input name="asic" type="text" size="20" value=2></td>
<td><a href="" title="4 DCT4 only: like 1 or 2"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr>
<td width="35%">BOX </td>
<td><input name="box" type="text" size="20" value=34144></td>
<td><a href="" title="4 DCT4 only: like 34144"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr>
<td width="35%">GID2 </td>
<td><input name="gid2" type="text" size="20" value=44FF></td>
<td><a href="" title="4 DCT3 only: like 44FF"><font size="-2" color="red">Help?</a></font></td>
</tr>
<tr>
<td width="35%">MSIN</td>
<td><input name="msin" type="text" size="20" value=1234567890></td>
<td><a href="" title="4 DCT4 only: like 1234567890"><font size="-2" color="red">Help?</a></font></td>
</tr>
</table>
<p style="text-align: left;">
<input type="Submit" name="type" value="dct4.php" size="25" class="button">
</p>
</form>';
}

?>

try:) ([Only Registered Users Can See Links])

2