Friday, December 28, 2012

New year Count Down in PHP

New year Count Down in PHP

Happy New Year 2013 simple Count Down script in php<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ $day = 1; $month = 1; $year = 2013; //change for next year $end = mktime(0,0,0,$month,$day,$year); $today= mktime(date("G"),date("i"), date("s"),date("m"),date("d"),date("Y")); $days=($end-$today)/86400; if ($days>0) { $r1 = explode('.',$days); $hours=24*($days-$r1[0]); $r2 =...

Monday, December 24, 2012

Website page rank php

Website page rank php

Get the page rank of any website supported by Alexa with this simple function. <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function page_rank($page, $type = 'alexa'){ switch($type){ case 'alexa': $url = 'http://alexa.com/siteinfo/'; $handle = fopen($url.$page, 'r'); break; case 'google': $url = 'http://google.com/search?client=navclient-auto&ch=6-1484155081&features=Rank&q=info:'; $handle = fopen($url.'http://'.$page,...

Thursday, December 6, 2012

Preventing SQL Injections and Cross-Site Scripting

Preventing SQL Injections and Cross-Site Scripting

To secure your site from SQL Injections and Cross-Site Scripting you must validate every user input field. And don't forget about url adress, you must verify $_GET data, too. There is a simple way to do this, without checking every user input. You can do all with this function:<?php...

Wednesday, November 28, 2012

Disable Browser Cache using PHP

Disable Browser Cache using PHP

This is a simple function which sends combination of headers that completely disable any browser caching.<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function disable_browser_cache() { header("Expires: Tue, 03 Jul 2001 06:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store,...
Download files from Amazon

Download files from Amazon

Amazon S3 (Simple Storage Service) is a commercial storage web service offered by Amazon Web Services. It is inexpensive, scalable, responsive, and highly reliable. It has no minimum fee, and no start-up cost.This code uses standard PHP sockets to send REST (HTTP 1.1) queries to Amazon S3 server. It...

Thursday, November 15, 2012

Easy to use and reliable mail function php

Easy to use and reliable mail function php

How to send email with PHP. Although PHP has built in function mail() to send email, it's quite insecure and use nonobvious arguments. In below example function Send_mail can send mail when called with just four arguments: from, to, subject, text. To avoid email injection (using malformed parameters to...

Wednesday, November 14, 2012

Detect user's browser with PHP

Detect user's browser with PHP

You can use this value with get_browser() to tailor your page's output to the capabilities of the user agent. By php.net, get_browser attempts to determine the capabilities of the user's browser, by looking up the browser's information in the browscap.ini file. Note: In order for this to work, your...

Monday, November 5, 2012

Set limitation for download rate

Set limitation for download rate

This snippet allows you set a limitation for download rate of the file that visitors download from your site.<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ /* set here a limit of downloading rate (e.g. 10.20 Kb/s) */ $download_rate = 10.20; $download_file = 'download-file.zip'; $target_file =...
Generate passwords automatically php

Generate passwords automatically php

Sometimes you need to generate passwords for customers automatically when a new account is created. This code allows you choose the desired length and strength for the password and it is very flexible.<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function GeneratePassword($length=8, $strength=0){ $vowels = 'aeuy';...

Wednesday, October 24, 2012

Retrieve Remote file size with cURL PHP

Retrieve Remote file size with cURL PHP

Here's the best way (that I've found) to get the size of a remote file. Note that HEAD requests don't get the actual body of the request, they just retrieve the headers. So making a HEAD request to a resource that is 100MB will take the same amount of...

Saturday, October 20, 2012

Force file download in PHP

Force file download in PHP

PHP allows you to change the HTTP headers of files, so that you can force a file to be downloaded that normally the browser would load in the same window. This is perfect for files like PDFs, document files, images, and video that you want your visitors to download...

Friday, October 19, 2012

Block Multiple ip addresses in PHP

Block Multiple ip addresses in PHP

Sometimes you need to disallow a visitor to access your website. The most common reason for this is Spammers. Although there are several other solutions to block multiple IP addresses, but in this post we are going to focus on simple php script.<?php /* Online PHP Examples with Source...

Thursday, October 18, 2012

Get URL in PHP

Get URL in PHP

Below is a simple php function that return current page url<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function currentURL() { $pageURL = 'http'; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} $pageURL .= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $pageURL...
Date and Time Format like Facebook in PHP

Date and Time Format like Facebook in PHP

This simple PHP example will return a date and time format like facebook, generated from a mysql datetime field. Input Format: date('Y-m-d H:i:s')<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function getDateTime($datetime) { $datetime=strtotime($datetime); $yesterday=strtotime(date('Y-m-d', mktime(0,0,0, date("m") , date("d") - 1, date("Y")))); $tomorrow=strtotime(date('Y-m-d', mktime(0,0,0, date("m") ,...
Mysql Database Connection in PHP

Mysql Database Connection in PHP

This is a simple example of how you could create a database connection from PHP to MySQL. It is good to save the MySQL Database Connection in a seperate php file in a secure part of the website. Then the file can be referenced in any page that requires...

Saturday, October 13, 2012

Validate Credit Card Number Using PHP

Validate Credit Card Number Using PHP

This piece of code will check if a creditcard number could possibly be valid, determined on the number ranges given. It will NOT actually validate the number with the creditcard company but it could function as a pre-check.<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function...

Friday, October 5, 2012

Switch between multiple CSS styles sheets with PHP

Switch between multiple CSS styles sheets with PHP

A lot of webmasters like this nice looking CSS websites with the possibility to switch between different CSS style sheets. This code snippet will help to create the switch. Just create you different style sheets and your universal coded html documents (these one have to work with all the...
Custom Error Page with .htaccess PHP

Custom Error Page with .htaccess PHP

Create your own custom error page This custom error page shows some standard error information and reports the error to the webmaster by e-mail. The script works for dead links and will report expired hot links from other sites (the IP address). Just add bad URL's and IP addresses...

Thursday, September 20, 2012

Make clickable text to links: PHP

Make clickable text to links: PHP

With this function you can make clickable text to links. Function: <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function dolinks($text) { $text = html_entity_decode($text); $text = " ".$text; $text = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '\\1', $text); $text = eregi_replace('(((f|ht){1}tps://)[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '\\1', $text); $text = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '\\1\\2', $text); $text = eregi_replace('([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3})',...

Wednesday, September 19, 2012

RSS Reader Class in PHP

RSS Reader Class in PHP

What is RSS? RSS stands for Really Simple Syndication or Rich Site Summary. RSS is used by (among other things) news websites, weblogs and podcasting. RSS feeds provide web content, or summaries of web content, together with links to the full versions of the content. RSS delivers this information...

Thursday, September 6, 2012

Send a magic packet over the Internet with PHP

Send a magic packet over the Internet with PHP

PHP function to send a magic packet over the Internet<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ flush(); function WakeOnLan($addr, $mac,$socket_number) { $addr_byte = explode(':', $mac); $hw_addr = ''; for ($a=0; $a <6; $a++) $hw_addr .= chr(hexdec($addr_byte[$a])); $msg = chr(255).chr(255).chr(255).chr(255).chr(255).chr(255); for ($a = 1; $a <=...
Composition of Variables

Composition of Variables

Amazing trick by PHPYou can use composition of variables. I don’t how it can be useful, but the following code is valid:<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ ${‘a’ . ‘b’} = ‘c’; echo $ab; // it will output c ?> ...
Recursive Directory Delete Function

Recursive Directory Delete Function

Recursive Directory Delete Function <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ define('PATH', '/www/public/images/'); function destroy($dir) { $mydir = opendir($dir); while(false !== ($file = readdir($mydir))) { if($file != "." && $file != "..") { chmod($dir.$file, 0777); if(is_dir($dir.$file)) { chdir('.'); destroy($dir.$file.'/'); rmdir($dir.$file) or DIE("couldn't delete $dir$file ");...

Thursday, August 30, 2012

How to hide PHP Notice and Warning Messages

How to hide PHP Notice and Warning Messages

How to hide PHP Notice & Warning Messages ? <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ // Turn off all error reporting error_reporting(0); // Report simple running errors error_reporting(E_ERROR | E_WARNING | E_PARSE); // Reporting E_NOTICE can be good too (to report uninitialized // variables...
How you would encrypt decrypt

How you would encrypt decrypt

You should not encrypt passwords, instead you should hash them using an algorithm like bcrypt. Still, here is how you would encrypt/decrypt <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ $key = 'password to (en/de)crypt'; $string = ' string to be encrypted '; // note the...
Simple PHP Function to Detect Mobile Users

Simple PHP Function to Detect Mobile Users

Simple PHP Function to Detect Mobile Users: iPhone, iPad, Blackberry & Android <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ if( !function_exists('mobile_user_agent_switch') ){ function mobile_user_agent_switch(){ $device = ''; if( stristr($_SERVER['HTTP_USER_AGENT'],'ipad') ) { $device = "ipad"; } else if( stristr($_SERVER['HTTP_USER_AGENT'],'iphone') || strstr($_SERVER['HTTP_USER_AGENT'],'iphone') ) { $device = "iphone";...
date_sun_info

date_sun_info

date_sun_info — Returns an array with information about sunset/sunrise and twilight begin/endarray date_sun_info ( int $time , float $latitude , float $longitude ) Example : <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ $northernmost_city_latitude = 78.92; // Ny-Ålesund, Svalbard $northernmost_city_longitude = 11.93; $southernmost_city_latitude = -77.88; //...
Increase PHP Script Execution Time Limit

Increase PHP Script Execution Time Limit

Every once in a while I need to process a HUGE file. Though PHP probably isn't the most efficient way of processing the file, I'll usually use PHP because it makes coding the processing script much faster. To prevent the script from timing out, I need to increase the...

Monday, August 6, 2012

Create Dynamic Radio Group (HTML) with PHP

Create Dynamic Radio Group (HTML) with PHP

Creating radio elements in some content management systems can result into writing a lot of code. Just in case your radio group with multiple options is getting a value from a database and/or a form. There need to be a check for every posted value for every option. This...

Saturday, July 28, 2012

Advanced PHP session start

Advanced PHP session start

If a session based web application is used by a visitor using Internet Explorer it's possible that this user get some trouble. This will happen if parts of the application are accessed for example via a shortcut on the desktop and the application opens then in a new Explorer...

Friday, July 27, 2012

Five Steps to Secure your PHP Website

Five Steps to Secure your PHP Website

Unfortunately there will always be some one out there on the world wide web who will attempt to break any thing they can find on the Internet so you owe it to your visitors/ members to ensure nothing malicious is being hidden on your site and there info...

Friday, July 20, 2012

Find visitor's IP address in php script

Find visitor's IP address in php script

Every php developer want to store IP address of visitor for tracking and other different purpose. Here is the function which i'm using in my script to store ip address in database. <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function visitorIPAdd() { /* This returns the...

Saturday, July 14, 2012

Remove HTML Tags from string in PHP

Remove HTML Tags from string in PHP

If your strings have any html code, you can easily remove using following code. Using regular expression: <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ $string = preg_replace("/<.*?>/", "", $string_contain_html_code); ?> ...
Stop SQL Injection in MYSQL with PHP Script

Stop SQL Injection in MYSQL with PHP Script

Every PHP-MYSQL programmer need to know Anti-SQL Injection. Please take a look at very simple function which can save your database!! <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ function ClearInput($dirtyInput){ if (get_magic_quotes_gpc()) { $clean = mysql_real_escape_string(stripslashes($dirtyInput)); }else{ $clean = mysql_real_escape_string($dirtyInput); } return $clean; } ?>...
Post XML data using CURL php

Post XML data using CURL php

Recently I was working in a hotel booking engine and found a couple of methods to post XML to server; I thought this might be good to share with my friends who want to post xml via HTTP POST method.There are several ways to Send XML requests via...

Friday, July 13, 2012

Prevent XSS attacks with php

Prevent XSS attacks with php

There are a number of ways hackers put to use for XSS attacks, PHP’s built-in functions do not respond to all sorts of XSS attacks. Hence, functions such as strip_tags, filter_var, mysql_real_escape_string, htmlentities, htmlspecialchars, etc do not protect us 100%. You need a better mechanism, here is what is...

Tuesday, July 10, 2012

Post or Submit Form Data with PHP CURL

Post or Submit Form Data with PHP CURL

Last Sunday, I was working with website form to collect data from third party website. If you have to just submit form its easy website does not restrict to use CURL in order to post data but my requirement was to post website from data and store that data in my database too....

Sunday, July 1, 2012

Connecting to ODBC using PHP

Connecting to ODBC using PHP

<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ // connect to a DSN "database" with a user and password "4evertutorials" $connect = odbc_connect("database", "4evertutorials", "4evertutorials"); // query the users table for name and surname $query = "SELECT name, surname FROM users"; // perform the query...
Get Unique Value from PHP Array

Get Unique Value from PHP Array

array_unique() array_unique — Removes duplicate values from an array Description: Takes an input array and returns a new array without duplicate values. Note that keys are preserved. array_unique() sorts the values treated as string at first, then will keep the first key encountered for every value, and ignore all...

Wednesday, June 27, 2012

Create PHP Image Gallery with MySQL Blob Field

Create PHP Image Gallery with MySQL Blob Field

This is a simple example of photo-gallery script, which uses MySQL table (BLOB field) to store images. Trivial password-protection, uploading and deleting images are supported. There are three main parts of the script: main page generation -- generates HTML code for the list of uploaded photos, forms for photo...

Friday, June 22, 2012

How to Unzip Zip file in PHP

How to Unzip Zip file in PHP

If you dont have access or cpanel access to your server and need to unzip an archive of zip file on your php server. You can use the script below to unzip files on your server using php: $_ZIP_FILE = zip_open('file.zip'); while ($zip_entry = zip_read($_ZIP_FILE)) { $name =...

Code Treasury

Ads

Contact Us

Name

Email *

Message *

Ads

Powered by Blogger.

 

© 2014 4everTutorials. All rights resevered.

Back To Top