我怎么没有在mysql之前添加20日期

I have issue with this date m/d/y for example 01/09/15 but when i insert that in my table of field name date and declared date i adde to me 2001/09/15 how can i save this format 01/09/15 in field database of my table

You can't change the format of mysql dates. You could save your date as a varchar but you can't use any manipulation.

You can save it as a mysql date or a time int, and then cast it to the format that you want, using date function.

You can read more about this in this post: Change date format (in DB or output) to dd/mm/yyyy - PHP MySQL

I hope this will be useful.