Check your mails from Anywhere
Apr 2nd
Hello Friends !!
Today I will give you some links. By using these you can check your mails anywhere from world.
We generally use MS Outlook Express, Thunder Bird for checking our mails.
But suppose you are outside your place and you have no mail software like Outlook then what will you do to check your mails ?
Don’t worry about this. I found list of sites which provides you to check mails. Here I list those sites.
(1) Mail 2 web
(2) Free my Email
(3) Email Anywhere
(4) Mail Start
(5) E Mol
(6) Email Addresses
(7) I Mail Reader
(8) Mail Probe
(9) Mail Reader
(10) Net My Mail
You can use above sites for checking your mails anywhere from world. It is easy to use.
If you wamt more then clicl below links:
I think you get some useful sites from this post.
Thanks…..
Use PayPal’s Instant Payment Notification with PHP
Apr 1st
hello Friends !!
Today i will tell you that how to integrate Instant Payment Notification(IPN) inPayPal using PHP.
There are several PHP scripts and classes to process PayPal payments using their native IPN (Internet payment notification) feature. Because the whole process is based on the data you need to send via a web form to the PayPal payment processor these script look very similar.
The payment / notification process is shown via the following graphic:
More >
Redirect to https (SSL) in php
Mar 26th
Hello Friends !!
Today I found some new things. This post is show you how to redirect to https(SSL) in PHP.
First, What is SSL ? Let me Explained :
SSL meand Secure Socket Layer. It is developed by Netscape to transmit private data via Internet.
SSL uses a cryptographic system that uses two keys to encrypt data – a public key known to everyone and a private or secret key known only to the recipient of the message. Both Netscape Navigator and Internet Explorer support SSL, and many Web sites use the protocol to obtain confidential user information, such as credit card numbers. By convention, URLs that require an SSL connection start with https: instead of http:
Most of e-commerce sites uses payment gateway for online payment.And those sites use SSL connection to transfer data to and from the payment gateway.
Most of the sites use http protocol. But in above case wehave to redirect browser to https.
If you want to see example, write “http://www.gmail.com” in browser, it automatically redirects to https.It means site transfer to SSL protocol.
First of all, you should know that SSL must be installed in the server. To redirect the browser to “https” , we must know that the site is using SSL or not at the moment. And for this, there is a server variable in PHP called “HTTPS”. $_SERVER['HTTPS'] returns “on” values when the site is using SSL connection.
More >
Take cPanel full backup-PHP
Mar 21st
Hello Friends !!
I found some new thing to take backup your site/blog from server.
I give you script to take backup.
This will take full backup from cPanel to FTP.
The first, cpbackup_cfg.php, shown below, must be edited to insert your site and FTP server login credentials.
$cpuser = “xxxxxxxxxx”;
$cppass = “xxxxxxxxxx”;
$domain = “yourdomain.com”;
$skin = “x2″;
$ftpuser = “xxxxxxxx”;
$ftppass = “xxxxxxxx”;
$ftphost = “ftp.backupsite.com”;
$ftpmode = “passiveftp”;
$ftpdir = “/subdir”;
$notifyemail = “webmaster@mydomain.com”;
$delbackup = 1;
$secure = 0;
$debug = 0;
?>
The second file, cp_backup.php, shown below, is the backup script itself.
More >
New Open Sorce “OsDate” – Dating and Matchmaking script
Mar 19th
Hello Friends !!
Today I want to discuss one new point with you.
I think you all are familier with joomla. Joomla is a free Open Source CMS which is widly used to make CMS.
Same way If you want to develope your Dating or Matrimonial or Couple site, in market there is one new open source available called OsDate.
osDate dating and matchmaking script fully integrates with major bulletin boards (phpBB, vBulletin, etc.) and FlashChat, and provides several payment modules, multiple skins, and free upgrades. The .zip or .tgz downloads below are over 30MB, so please be patient while downloading! Want a different look for your dating site?
You can download absolutely free from this site.
To Download Reffer http://www.tufat.com/s_free_dating_system.htm.
Currently i am working on this. So if you have any question or problem with this then please comment me.
Thanks…
Take Backup of MySQL database using PHP
Mar 16th
Hello Friends !!
Generally we take backup of our MySQL database using import/Export option in phpMyAdmin.
But Suppose, you have to take backup every day or every hour, this technique is time consuming. It takes more time.
There is one way to take backup which take less time. We can take backup using PHP code. When you run this code, This code create one backup file automatically which ia easily import in database when you want.
I write that PHP code below. Simply you have to copy this code and paste in you PHP file.
More >
MySQL table to CSV – PHP Script
Mar 14th
Hello Friends !!
If you want to export data from MySQL table to CSV file ,then don’t worry. I will provide you one script. When you run this script, data in table are stored in CSV file.
Here i give you code of the PHP script. You have to just copy that code and paste in your PHP file and run that file.
More >
Export from CSV to MySQL table – PHP Script
Mar 13th
Hello Friends !!
In my later post on Export data from MS EXCEL sheet to MySQL table – PHP Script , i explained how store data from MS EXCEL sheet to MySQL table.
Today I will give you PHP code for store data from CSV file to MySQL table. You have to just make one PHP file, copy code displayed below and paste in that file. After this just run that PHP script.
More >
Preventing SQL Injection Attacks with MySQL and PHP-2
Mar 10th
Hello Friends !!
If you remember then in my older post on SQL injection, I was explain you basic of SQL injection and basic code to prevent SQL injection.
Today I will explain how to prevent SQL injection using encryption ?
I think you all use MySQL for database purpose.We add one variable named key . This Key is concatenate with original password.
There is one fieldtype md5. We will use this type to store password.
I list some steps for this method :
More >