WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDESPHP CLASSESCODE SEARCHARTICLES SEARCHPHP FORUMSPHP MANUALPHP FUNCTIONS LISTWEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Join us on FaceBook
Submit a code Example / Snippet Submit Your Code
Poker Tournaments Poker Tournaments
Poker Guide for Developers Poker Guide for Developers
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Resources
Web Development Content
Internet Security Software
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
פרייסז - הכח לקנות עובר לידיים שלך
Texas Holdem Poker Evangelists

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : If you want to create select buttons featuring current date this example will show you how...
Categories : Date Time, HTML and PHP, PHP Update Picture
Tomas Vorisek
Date : Nov 09th 1998
Grade : 1 of 5 (graded 1 times)
Viewed : 8969
File : No file for this code example.
Images : No Images for this code example.
Search : More code by Tomas Vorisek
Action : Grade This Code Example
Tools : My Examples List

Submit your own code examples  Submit your own code examples 
 

$cday= date( "d" );
$cmonth= date( "m" );
$cyear= date( "Y" );

echo "<TD align=left><select name=day>";

$i=1;

while($i<32) {

if ($cday == $i) {

echo "<option selected> $i";
}
else {
echo "<option> $i";
}
$i=$i+1;
}
echo "</select>";
echo " / <select name=month>";

$i=1;

while($i<13) {

if ($cmonth == $i) {

echo "<option selected> $i";
}
else {
echo "<option> $i";
}
$i=$i+1;
}
echo "</select>";
echo " / <select name=year>";

echo "<option selected> $cyear";
echo "</select></TD>";



CALENDAR - easy calendar-navigation with PHP
Categories : PHP, Date Time, HTML and PHP, Calendar
Simple PHP control CSS Calendar
Categories : PHP, HTML and PHP, Calendar, Date Time, CSS
Local-to-user date and time display regardless of time zone or where the website's server is located
Categories : PHP, Date Time, HTML and PHP, Java Script
Convert date's in YYYY-MM-DD (i.e. mysql format) into PHP3 timestamps. Also Find the difference in days between two PHP3 timestamps.
Categories : HTML and PHP, PHP, MySQL, Date Time
Creates three SELECT form fields: Month, Day, and Year. You give it a string which will be used to make the name for the three fields, and a number of seconds to use as the default date. If you give it blank for this value, the current date is used.
Categories : HTML and PHP, PHP, Date Time
Kewl Date Example
Categories : PHP, HTML and PHP, Date Time, CSS, Beginner Guides
Customizable Calendar Class
Categories : HTML and PHP, Date Time, PHP, PHP Classes, Calendar
PHP3: Formmail. Just a cgi formmail, but than in PHP. It is easy to use!
Categories : HTML and PHP, Email, PHP, Perl, HTML and PHP
Select with current month
Categories : PHP, HTML and PHP, Date Time, Arrays
This script contains 2 functions: 1 to create html select object based on your own customer date format entry- "M d Y h:i.... etc". The second function processes the select object on submit back to unix time.
Categories : PHP, Calendar, Date Time, HTML and PHP
Website colour changer
Categories : PHP, HTML and PHP, Date Time
Calendar using Date function
Categories : HTML and PHP, PHP, Date Time, Calendar
checkdate -- Validate a gregorian date/time
Categories : PHP, PHP Functions, Date Time
Function to do live population of HTML's <Select> tag from a Table
Categories : PHP, MySQL, HTML and PHP, Databases
Local Time clock and Server time usign PHP and JavaScript
Categories : PHP, Java Script, Date Time, Beginner Guides