i'm getting more familiar with php, but i ran into a problem today while running a query.
the table i am using has a date field with all the dates in a format like 07/31/03 (m/d/y). when i run a query to print data from that field it prints it like 2003-07-31.
is there anyway i can format it so that it prints it exactly how it is in the table?
also, i eventually want to run a query that lists the top 10 enroller distributors for the current month. there are fields that have the information for me to do this, but what i am unsure of how to do is compare the date field in the database to the current month. distributors sign up ever day and i just want it for the month not one date. is it possible to do this?
the date field is dm_start_date so i just want to compare it to the current month. i figure i will probably have to create a variable and set it to some value for the current month and change it on a monthly basis. i don't know. my mind is a little taxed now. any help or suggestions are appreciated.