How To Create An Skype Resolver 06-07-2014, 11:56 PM
#1
This Tutorial is created by MrPenguin.
- Introduction -
Welcome to our tutorial on how to create your own Skype Resolver, in this tutorial I’ll show you how to make your own web panel with a simple UI for your users or yourself privately to successfully and cleanly resolve Skype names, I won’t show you how to make the API on a VPS as that would be in a different tutorial but; I’ll provide you with one <3
– First Step -
Okay, so you will need this api here:
- Introduction -
Welcome to our tutorial on how to create your own Skype Resolver, in this tutorial I’ll show you how to make your own web panel with a simple UI for your users or yourself privately to successfully and cleanly resolve Skype names, I won’t show you how to make the API on a VPS as that would be in a different tutorial but; I’ll provide you with one <3
– First Step -
Okay, so you will need this api here:
Code:
http://resolveme.org/api.php?key=5222c16e2b1b1&skypePseudo={$name}Then, create an PHP file with the following code:
Code:
<?php
$resolved = '';
if (isset($_POST['resolveBtn']))
{
$name = $_POST['skypeName'];
$resolved = @file_get_contents
("http://resolveme.org/api.php?key=5222c16e2b1b1&skypePseudo={$name}");
}
?>
<form class="form" method="POST" action="">
<fieldset>
<label>Skype Name</label>
<input type="text" name="skypeName" value="<?php echo $name; ?>" id="skypeName"/>
<?php echo $resolved;?>
<input type="submit" value="Resolve" name="resolveBtn" class="dblueB logMeIn" />
</fieldset>
</form>
– Second Step -
Once you’ve got your code, you’ll have to save it as index.php.
Upload it to your web server and simple you’re done!
Once you’ve got your code, you’ll have to save it as index.php.
Upload it to your web server and simple you’re done!
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)