This snippet helps you to Generate Random Passwor...
Home » All posts
How To Make A Port Scanner in PHP
Port scanners are created to find opened/closed ports in a host, you can get the same results in this Port Scanner coded in php by the way I wouldn't take all the credits to this because i am a php beginner so I had to make this from scratch...
Snippet : Base64 Encode and Base64 Decode in PHP
This snippet helps you to encode and decode your text with base64.
Base64 is a group of similar encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. The Base64 term originates from a...
Snippet : TinyURL API in PHP
This snippet helps you to shorten your URLs with TinyURL API(Function with usage)
<?php
function TinyURL($url){
return file_get_contents('http://tinyurl.com/api-create.php?url='.$url);
}
echo TinyURL('http://www.ultimateprogrammingtutorials.info');
?>
You...
Snippet : HTTP Redirection In PHP
This snippet helps you to redirect to another website/webpage.
<?php
header('Location: http://www.example.com');
?>
Replace http://www.example.com with your website URL/webpage U...
Snippet : Detect HTTP User Agent in PHP
The code below helps you to detect the HTTP user agent I mean the browser version.
<?php
$useragent = $_SERVER['HTTP_USER_AGENT'];
echo "<b>User Agent </b>: ".$useragent;
?>
Return
User...
Down For Everyone Or Just Me in VB.NET
Down for everyone or just me is a website that can check whether your website is down or up.
Required components
One Button
One TextBox
Coding :
Add these codes to Button click_event & don't forget to add the namespace Imports System.Net.
...
How To Make A Lyrics Fetcher In VB.NET
Description of the program : You can get the lyrics of songs with the artist name & the song name from this program.
As usual just create a new fresh project and add the following tools to your form
2 Buttons
2 TextBoxes
1 RichTextBox
1...
How To Make Login Form in PHP
PHP (PHP: Hypertext Processor) is a very widely-used scripting language, and the reasons why are obvious: PHP integrates perfectly with plain HTML documents, is supported by the vast majority of Web hosting providers and has an easy-to-learn...