Hi there,
MySQL Date type accepts a string like "2004-05-28" if I recall correctly. So if your input is like "05/28/2004", you can convert this into the correct format.
You can do either of the following (or more):
1)
explode() it with "/" and build the correct date format,
2)
substr() to extract each component and glue them together, or
3)
strtotime() it to onvert it first to UNIX timestamp and use
date() to make the correct format out of it.
If you need an example, you can visit
http://wwwphp.net and type in the function of your choice. Good luck then!