28 Dec, 2024
In this artical we are discuss about what is modules and how to use modules in Python. The propensity of computer code is to expand. We can conclude that code…
The ACID properties—Atomicity, Consistency, Isolation, and Durability—are fundamental principles that ensure reliable transactions in a database. To know more about ACID Properties, This article focuses on two key properties: Atomicity…
MySQL has InnoDB storage engine, that strictly follow the ACID Model to prevent data corruption and results distortion from unexpected occurrences like hardware failures and software crashes. You don’t have…
A key idea in software development is the singleton design pattern, which offers a straightforward method of guaranteeing a class has a single instance and a global access point. This…
Within the profession of software engineering, design patterns are essential resources that help architects as well as developers effectively address common issues. The Factory Design Pattern is one such pattern…

Integrate Alertpay payment gateway

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ /> <title>Untitled Document</title> </head> <body> <form method=”post” action=”https://www.alertpay.com/PayProcess.aspx” > <input type=”hidden” name=”ap_purchasetype” value=”item”/> <input type=”hidden” name=”ap_merchant” value=”apdevforum@gmail.com”/> <input type=”hidden” name=”ap_currency” value=”USD”/> <input type=”hidden” name=”ap_itemname_1″ value=”Item 01″/> <input type=”hidden” name=”ap_itemname_2″ value=”Item 02″/> <input type=”hidden” name=”ap_itemname_3″ value=”Item 03″/> <input type=”hidden” name=”ap_description_1″ value=”Lorem […]

Share your Love
1 min read

2 Quick and Efficient Ways to Import MySQL Database

A common task in database management is exporting and import MySQL database. You can use this procedure to transfer data between servers, backup data, or restore data to a previous state. These tasks can be completed in a number of ways, including with command-line tools and graphical user interfaces. The procedures for exporting and importing […]

Share your Love
4 mins read

How to Start gnome shell at ubuntu 12.04

Search the Ubuntu Software Center for “CompizConfig” or sudo apt-get install compizconfig-settings-manager Launch CompizConfig Settings Manager by pressing Alt+F2 and running ccsm. (This may also be run from a Terminal.) Click “Window Management” Enable either “Application Switcher” or “Static Application Switcher” Share your Love     

Share your Love
1 min read

PHP type cast float to int

Description int intval ( mixed $var [, int $base = 10 ] ) Parameters Description $var : The value which converted to an integer $base : Conversion base Examples <?phpecho intval(42); // 42echo intval(4.2); // 4echo intval(’42’); // 42 Share your Love     

Share your Love
1 min read