Jump to content
xisto Community
FirefoxRocks

Getting Certain Parts Of A Record The character data

Recommended Posts

There are no such functions in PHP5, or at least according to http://php.net/.

That's correct, but you can obtain the month name easily using the strftime(), strtotime(), date() and time() php functions together or directly with the MONTHNAME() MySql function:

<?php// php functions$monthname=strftime("%B",strtotime(date("d-m-Y",time())));// MySql function$sql="SELECT MONTHNAME('2007-10-26') as mname";$rs=mysql_query($sql) or die('Error...');$row=mysql_fetch_array($rs);$mname=$row["mname"];echo "Month Name with Php: " . $monthname;echo "<br />Month Name with MySql: " . $mname;?>
Best regards,

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.