Advanced skills in PHP programming - using Mysql functions_PHP tutorial

WBOY
Release: 2016-07-21 16:01:16
Original
1004 people have browsed it

Although PHP provides us with many functions, some things are still not very convenient to deal with. For example, the date and time functions provided by PHP are very limited. Mysql provides us with many such functions. Can I use Mysql functions to process PHP programs? The author made the following attempts.
$data_time="1998-12-31 23:59:59";
$connect_id=mysql_connect('localhost');
$query_id=mysql_query("SELECT DATE_ADD ('$data_time',INTERVAL 1 YEAR)",$connect_id);
$data_time=mysql_result($query_id,0);
mysql_close($connect_id);
echo $data_time;
? >

By analogy, we can also use other functions provided by Mysql during the programming process.
Of course, please check the manual for the functions and usage provided by Mysql.
Please correct me if I am inappropriate!

Author Email: fancao0515@0451.com
                                    fancao0515@21cn.com                                                                                                                                                       Author and source]



http://www.bkjia.com/PHPjc/316887.html

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/316887.htmlTechArticleAlthough PHP provides us with many functions, some things are still inconvenient to process. For example, the date and time functions provided by PHP are very limited. Mysql provides us with many such functions...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!