Although PHP provides a lot of functions for us, it is not easy to process some things. 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? ProgramWhat about it? I have made the following attempts.
<? PHP
$ Data_time = "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;
?>
We can also use other functions provided by MySQL during programming.
Of course, you can check the manual for the functions and usage provided by MySQL.
If this is not the case, please correct me!
Author Email: fancao0515@0451.com
Fancao0515@21cn.com
[This article is copyrighted by the author and osuo. If you need to reprint it, please indicate the author and its source]