Thursday, December 26, 2019
Display Todays Date on Your Website
  Server-side PHP scripting gives web developers the ability to add features that changeà  to their websites. They can use it to generate dynamic page content, collect form data, send and receive cookies and display the current date. This code only works on pages where PHP is enabled, which means the code displays a date on pages that end in .php. You can name your ââ¬â¹HTML page with a .php extension or other extensions set up on your server to run PHP.          Example PHP Code for Todays Date      Using PHP,à  you can display the current date on your website using a single line of PHP code.          Heres How It Works      Inside an HTML file, somewhere in the body of the HTML, the script startsà  by opening the PHP code with the  symbol.Next, the code uses the print( ) function to send the date it is about to generate to the browser.The date function is then used to generate the current days date.Finally, the PHP script is closed using the ? symbols.The code returns to the body of the HTML file.          About That Funny-Looking Date Format      PHP uses formatting options to format date output. The lower case Lââ¬âor lââ¬ârepresents the day of the week Sunday through Saturday. F calls for a textual representation of a month such as January. The day of the month is indicated by d, and Y is the representation for a year, such as 2017. Other formatting parameters can be seen at the PHP website.    
Subscribe to:
Post Comments (Atom)
 
 
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.