php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: February 2010
http://php-mysql-articles.blogspot.com/2010_02_01_archive.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Wednesday, February 10, 2010. I have found a great function that returns the difference in days, hours and minutes between 2 dates. Here is the link, works like a charm:. Http:/ www.gidnetwork.com/b-16.html. For example, this function can be used for events, to know how much time is left until the next event. Subscribe to: Posts (Atom). PHP Consultant and Developer. PHP, MySQL Articles.
php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: March 2010
http://php-mysql-articles.blogspot.com/2010_03_01_archive.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Friday, March 19, 2010. JQuery scroll to element. Here's a simple way to auto scroll to an element of the page really nice. First you have to add this piece of code (of couse jQuery library must be included in your source code):. ScrollTo : function(speed, easing) {. Return this.each(function() {. Var targetOffset = $(this).offset().top;. And then you just scroll to an element id:.
php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: PHPMailer UTF-8 messages
http://php-mysql-articles.blogspot.com/2009/08/phpmailer-utf-8-messages.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Tuesday, August 4, 2009. Sending UTF-8 body messages with PHPMailer is pretty easy. You just have to set charset. Here is an example: $mail- CharSet = 'UTF-8';. So now you can send utf-8 mail messages using PHPMailer. Good luck. Subscribe to: Post Comments (Atom). PHP Consultant and Developer. File Get Contents replacement (CURL). PHP, MySQL Articles. PHP and MySQL Articles and Tips.
php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: File_Get_Contents replacement (CURL)
http://php-mysql-articles.blogspot.com/2009/08/filegetcontents-replacement-curl.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Tuesday, August 25, 2009. File Get Contents replacement (CURL). Some servers have file get contents function disabled. But don't worry, most of them have curl library installed. Here is a replacement function for file get contents, using CURL library. Easy and working:. File get contents curl (. CURLOPT HEADER ,. CURLOPT RETURNTRANSFER ,. CURLOPT URL ,. PHP Consultant and Developer.
php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: How to validate a hex color in PHP
http://php-mysql-articles.blogspot.com/2009/06/how-to-validate-hex-color-in-php.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Wednesday, June 24, 2009. How to validate a hex color in PHP. Validating a hex color code in PHP is easy. Hex colors must start with '#' and have 6 characters. Hex colors can contain the following letters: [A-F]. Hex colors can contain the following digits: [0-9]. So using pregmatch, the hex validation code is:. If(preg match('/ #[a-f0-9]{6}$/i', $color) / hex color is valid.
php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: April 2009
http://php-mysql-articles.blogspot.com/2009_04_01_archive.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Thursday, April 23, 2009. Get file extension in PHP. Here are some simple ways to retrieve extension of a file using PHP. You need this when you try to validate file uploads, for example. So here is one simple way:. Extension = end(explode(".", $filename ) ;. Let's say we have: $filename = 'text.jpg' then the result will be jpg. Fileinfo = pathinfo($filename);. And the third way:.
php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: August 2009
http://php-mysql-articles.blogspot.com/2009_08_01_archive.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Tuesday, August 25, 2009. File Get Contents replacement (CURL). Some servers have file get contents function disabled. But don't worry, most of them have curl library installed. Here is a replacement function for file get contents, using CURL library. Easy and working:. File get contents curl (. CURLOPT HEADER ,. CURLOPT RETURNTRANSFER ,. CURLOPT URL ,. Tuesday, August 4, 2009.
php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: jQuery scroll to element
http://php-mysql-articles.blogspot.com/2010/03/jquery-scroll-to-element.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Friday, March 19, 2010. JQuery scroll to element. Here's a simple way to auto scroll to an element of the page really nice. First you have to add this piece of code (of couse jQuery library must be included in your source code):. ScrollTo : function(speed, easing) {. Return this.each(function() {. Var targetOffset = $(this).offset().top;. And then you just scroll to an element id:.
php-mysql-articles.blogspot.com
PHP Articles. MySQL Articles: December 2007
http://php-mysql-articles.blogspot.com/2007_12_01_archive.html
PHP Articles. MySQL Articles. Your expert in PHP and MySQL. Articles and tutorials on this website contain code examples. Friday, December 7, 2007. PHP force file download. How to force file download in PHP. Here is how you can force a client to download a file. Text = 'force me to download';. Header("Content-Length: " . strlen($text) );. Header('Content-Disposition: attachment; filename=downloadme.txt');. This will force browser to download/save the file named 'downloadme.txt'. Subscribe to: Posts (Atom).