Integrating Payment Gateway of Authorized.Net

Steps to create an Authorized.Net Payment Gateway A merchant can post transactions directly to Authorized.Net by using DPM or Direct Post Method. If the merchant is an authorized user then, Authorized.Net returns coded values to the merchant server for verification, then generates a receipt for display within the merchant page. The billing of customer is done in Authorized.Net. The merchant has a...

Read More

How to create a FORM in MS Access 2007?

Steps to create a FORM in Access 2007. 1. Open the Access application. Then click the ‘Blank Database’. After clicking, the system will ask you to give the file name of the database. Give the name and click the create button as shown in the picture and Access will create a new database in the system. You can locate the file from the path. By default Access stores the files in...

Read More

How to Make A Glossy Web 2.0 Button?

Steps to create a glossy web 2.0 button. Open Photoshop and create a document for your glossy button. 1. First of all create a shape using rounded rectangle tool on the tool bar having radius value of 18 px. (Figure: 1) 2. Right click on the rectangle layer pallet & choose blending option & set the gradient overlay properties. Set the color of the first thumbnail to # F65913.Set the...

Read More

Making the Hidden Administrator Account on Windows 7 or Windows Vista Visible

A User named Administrator is created with Administrator privileges when we install Windows Operating System. During installation phase Windows asks us to create another user. When we create this second user, Administrator user becomes hidden. When we start Windows Administrator user is not shown on the login page. Even when we go to user management Administrator user is not displayed. We can...

Read More

Accessing MySQL Database with PDO

As the use of PDO is becoming widespread while programming with PHP5/MySQL5, let us know how to use it in practice. Using mysqli extension. Check in phpinfo page. Instantiate mysqli: $oDb = new mysqli('host-name', 'db-user', 'db-pwd', 'db-name'); if (mysqli_connect_errno()) { print 'Connect failed: '.mysqli_connect_error(); exit(); } $sQry = "SELECT STATEMENT"; $oResult =...

Read More

File Upload in PHP

With the success of Web 2 application file uploading has become a major task of many PHP programmers. At present almost every web application have implemented file uploading feature. A job portal allows user to upload files in the form of CV or resume whereas in a social networking site users upload their pictures and videos. The POST method file upload lets people upload both text and binary...

Read More