How to convert php date into mysql format
1. MySQL column datatype is “DATE” $date = date(‘Y-m-d’, strtotime(str_replace(‘-‘, ‘/’, $date))); 2. MySQL column datatype is “DATETIME”: $date = date(‘Y-m-d H:i:s’, strtotime(str_replace(‘-‘, ‘/’, $date)));
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); ?>
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 […]
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 […]
How to resolve sudo issue due to its folder permission
In Ubuntu you can first strike Ctrl+Alt+T which opens the terminal. After that you can copy-paste the command below to Ctrl+C and paste in terminal with Ctrl+Shift+V Command: pkexec chmod 0440 /etc/sudoers
php sqlite pdo driver is needed but not installed ubuntu
It’s easy when stuck fpr PDO Driver, Open terminal in Ubuntu and Type command in terminal sudo apt-get install php5-sqlite After you have to restart apache server sudo service apache2 restart
How to installed curl Ubuntu?
sudo apt-get install curl libcurl3 libcurl3-dev php5-curl After installing libcurl you should restart the web server with one of the following commands, sudo /etc/init.d/apache2 restart OR sudo service apache2 restart
How To Extract .RAR Files in Ubuntu
you just need to install small package called ” unrar “ 1 : goto your Terminal then typesudo apt-get install unrar 2 : It will ask you for password, type your user password and press ENTER.