POLYTECHNIC COLLEGES IN Andhra Pradesh AND Telangana
College Code: College Name:
001 Government Polytechnic,Masabtank
002 Govt Polytechnic,Hyderabad
003 KN Polytechnic,Hyderabad
004 Govt Polytechnic,Warangal
005 Govt Polytechnic,Nizamabad
006 Govt Polytechnic,Mahaboobnagar
007 KDR Govt Polytechnic,Wanaparthy
008 Govt. Polytechnic,Srikakulam
009 Govt Polytechnic,Kancharapalem
010 Andhra...
Tuesday, May 1, 2018
Friday, April 6, 2018
How to remove .php, .html extensions with .htaccess
How to remove .php, .html extensions with .htaccess
Many times you will want to have user-friendly URLs on your site. Instead of https://www.example.com/index.html you will want to have https://www.example.com/index . The second URL looks much better. Also, from the SEO point of view is better to don’t use file extensions.
The steps to remove file extensions are:
Create .htaccess if not...
Tuesday, February 20, 2018
Getting started with CodeIgniter: Installation
CodeIgniter is a PHP framework that enables developers to build and test web applications faster. It contains many code libraries, reusable classes, and functions that speed up the development process significantly. It works with the MVC pattern, which isolates the back-end from the front-end. This increases the flexibility of apps built using CodeIgniter.
In this blog, I'll show you the directory...
Saturday, February 3, 2018
Some Of The Daily Usage Computer Keywords Full Names Or Obrivations
1.) GOOGLE – Global Organization Of Oriented Group Language Of Earth.
2.) YAHOO – Yet Another Hierarchical Officious Oracle.
3.) WINDOW – Wide Interactive Network Development for Office work Solution.
4.) COMPUTER – Common Oriented Machine Particularly United and used under Technical and Educational Research.
5.) VIRUS – Vital Information Resources Under Siege.
6.) UMTS – Universal Mobile Telecommunicati...
Friday, February 2, 2018
PHP RANDOM PASSWORD
PHP RANDOM PASSWORD
<?php
$length = 10;
$chars = array_merge(range(0,9), range('a','z'), range('A','Z'));
shuffle($chars);
$password = implode(array_slice($chars, 0, $length));
echo $password;
?>
...
Download File Using Php
Download File Using Php
I added the code to download the file using php. When we apply this concept, dont need to give the file dirctory to user.
<?php
function downloadfile($filepath){
if(file_exists($filepath)){
// Change it based on file extension or type
$type="application/zip";
header("Pragma:...
Password Validation in php
<?php
if (!preg_match('~^[a-z0-9]*[0-9][a-z0-9]*$~i',$password)) {
// $subject is alphanumeric and contains at least 1 number
$passworderror="Please enter password with digits";
}
?&g...
Delete All Files Inside Folder
Delete All Files Inside Folder
We Can Delete The all files Inside Folders
<?php
$dir="folderdirctory/";
if(file_exists($dir)){
foreach(glob($dir.'*.*') as $files){
unlink($files);
}
}
?&g...