January 4th, 2010
View Comments
MySQL to Google Based Datafeed Converter PHP Script
Hello Friends !!
Currently I am working on one project in which I have to store data in Google Merchant Center.
This is a Google Product Search which is used for search any product around the world. Currently many shopping sites stores their products in Google Product Search.
For store data in google product search, Google supports txt file with tab seperated.
After some reserch I have made one PHP script which store data from MySQL table to txt file with tab seperated.
December 25th, 2009
View Comments
Hello Friends,
Today I will explain you about authorize.net payment gateway. Since last two months, I was working on authorize.net payment gateway integration with PHP. And I was getting so much difficulties at the time of integration.
December 9th, 2009
View Comments
Hello Friends !!
Today I will share with you about cPanel and its advanced feature Cron Job.
First of all what is cPanel ?
CPanel is a fully featured web-based control panel that allows you to manage your domain through a web interface. The idea is to transfer as much of the control and responsibility of managing your web site to you. You have the ability to manage all aspects of e-mail, files, backup, FTP, CGI scripts, and web site statistics.
Now what is Cron Job ?
A cron job allows you to run a certain command at times set by the job. For example, if you want to execute one file at midnight 12.00 then you can set time using cron job. There is an advanced feature in cPanel from where you have to write only one command and full path of the file whcih want to execute.
June 26th, 2009
View Comments
Hello Friends!
Today i want to share with you some important topic.
I think you don’t know that jQuery and Prototype both will not work at same page. if you are using jquery with prototype with default settings than it will create a problem and not work according to our requirement.
I already face this problem. After long research, i have found the solution and which is working fine for me.
So The solution Read it Carefully because the arrangement is very important.
April 10th, 2009
View Comments
Hello Friends !!
Today i will show you hiw to use Cookie in PHP.
First of all Cookies are small pieces of text, stored by a user’s web browser, that contain the user’s settings, shopping cart contents, or other data used by websites.
In PHP we can set cookies by inbuilt function setcookie().
setcookie(‘username’, $name);
It is very easy to use and understand. First parameter is the name of the cookie and second one is the value you want to store in cookie.
By above code you can set simple cookie and this cookie will be deleted when user close their browser.
We can also set the time how long we want the cookie.
$cookie_life = time() + 31536000;
setcookie(‘username’, $name, $cookie_life);
Above example create cookie for 1 year. Yes 31536000 seconds means 1 year.Remember, cookies must be deleted with the same parameters they were set with.If users clear their history from browser then cookies will be deleted.
April 8th, 2009
View Comments
Hello Friends !!
Today I found one PDF file about PHP Security. Here I will give you that tutorial.
In this tutorial all the PHP security issues are explained in easu language.
Document is about worth 15 pages so i can’t write it in my blog.
Simply click on link shown below and you can see that PDF file. But first you have to install Adobe PDF reader.
CLICK HERE to see tutorial.
If you like this tutorial then please comment on this post. If you have any query then also tell me.
Click below links for more tutorials:
I will try my best to solve your problem.
Thanks…
April 2nd, 2009
View Comments
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.
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…..
April 1st, 2009
View Comments
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:
March 26th, 2009
View Comments
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.
March 23rd, 2009
View Comments
Hello Friends !!
Today I will Give you code to delete records using JQuery and PHP with Animation effect.
It is very simple to understand. First you have to download jquery.js which is availble HERE.
After that copy this code in your PHP file and run it.