Archive for the ‘Web Development’ Category

Login automatically from your file to protected folder

Thursday, April 14th, 2016

If you have a folder which is password protected by .htaccess & .htpasswd, to login automatically from 
your file and access data inside the folder, use the following format:

 

<a href="http://username:password@yourDomain.com

/protectedFolderName/yourFileInsideFolder.html">

 

Yee Haw!

 





PHP Go Back Button

Tuesday, December 1st, 2015

 

My solution for you is using PHP and Server capabilty to keep track of your PHP pages.

Use followong code in your markup and see the magic

 

<?php
url = htmlspecialchars($_SERVER[‘HTTP_REFERER’]);
echo "<a href='$url'>back</a>";
?>

——————————————————





Custom Font Face

Saturday, March 15th, 2014

 

Do you like to use your own font on your website and do not know how to do that? Here in this post I will show you how you can do that in very simple words. To do so you need to purchase your font face files and save them in a folder. Your font face includes four important files with .eot, .woff, .ttf, and .svg extensions. These files guarantee your font works on different internet browsers. For example I use “Apple” font family so its main font face files would be apple.eot, apple.woff, apple.ttf, and apple.svg.
(more…)





Free Simple Website

Wednesday, February 26th, 2014

 

How to make a free simple website?

This tutorial helps you to create a simple two pages website for your personal use. After making require changes on text and images you should upload it to your host (web server). To start creating your website you need to provide:

(more…)