27 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…

How to Add javascript in Joomla

There are three ways to add javascript Inline JavaScript 1: <?php 2: $document = JFactory::getDocument(); 3: $document->addScriptDeclaration(‘ 4: window.event(“domready”, function() { 5: alert(“An inline JavaScript Declaration”); 6: }); 7: ‘); 8: ?> External JavaScript There are two ways to include a JavaScript file 1: <?php 2: $document = JFactory::getDocument(); 3: $document->addScript(‘/media/system/js/sample.js’); 4: ?> The second […]

Share your Love
1 min read

.htaccess Block hot linking from specific domains

RewriteEngine On RewriteCond %{HTTP_REFERER} ^http://(.+.)?myspace.com/ [NC,OR] RewriteCond %{HTTP_REFERER} ^http://(.+.)?blogspot.com/ [NC,OR] RewriteCond %{HTTP_REFERER} ^http://(.+.)?livejournal.com/ [NC] RewriteRule .*.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpe [L] RewriteEngine On  RewriteCond %{HTTP_REFERER} ^http://(.+.)?myspace.com/ [NC,OR]  This condition was not met but the OR option made it pass RewriteCond %{HTTP_REFERER} ^http://(.+.)?blogspot.com/ [NC,OR]  This condition was not met but the OR option made it pass RewriteCond %{HTTP_REFERER} ^http://(.+.)?livejournal.com/ […]

Share your Love
1 min read

php date() Formatting

<?php $today = date(“F j, Y, g:i a”); // March 10, 2001, 5:16 pm $today = date(“m.d.y”); // 03.10.01 $today = date(“j, n, Y”); // 10, 3, 2001 $today = date(“Ymd”); // 20010310 $today = date(‘h-i-s, j-m-y, it is w Day’); // 05-16-18, 10-03-01, 1631 1618 6 Satpm01 $today = date(‘it is the jS day.’); […]

Share your Love
1 min read

php date() and mktime() example

This can be more reliable than simply adding or subtracting the number of seconds in a day or month to a timestamp because of daylight saving time. <?php $tomorrow = mktime(0, 0, 0, date(“m”) , date(“d”)+1, date(“Y”)); $lastmonth = mktime(0, 0, 0, date(“m”)-1, date(“d”), date(“Y”)); $nextyear = mktime(0, 0, 0, date(“m”), date(“d”), date(“Y”)+1); ?> Share […]

Share your Love
1 min read

How magento save value in session?

if you want to save “Test value” in “SessionMessage” variable $sessionValue = ‘Test Value’;Mage::getSingleton(‘core/session’)->setSessionMessage($inputMessage); If you want to read value form “SessionMessage” $outputMessage = Mage::getSingleton(‘core/session’)->getSessionMessage();echo $this->__($outputMessage); Share your Love     

Share your Love
1 min read

Money Booker Payment Integration

  <!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 action=”https://www.moneybookers.com/app/payment.pl” method=”post” target=”_blank”> <input type=”hidden” name=”pay_to_email” value=”merchant@moneybookers.com”> <input type=”hidden” name=”status_url” value=”merchant@moneybookers.com”> <input type=”hidden” name=”language” value=”EN”> <input type=”hidden” name=”amount” value=”39.60″> <input type=”hidden” name=”currency” value=”GBP”> <input type=”hidden” name=”detail1_description” value=”Description:”> <input type=”hidden” name=”detail1_text” value=”Romeo and Juliet […]

Share your Love
1 min read