In my program i need to alert current date with time in specific format(2015-11-18 12:23:00) so i am write like this
       var date = new Date();
       alert(date);
but the result is Wed Nov 18 2015 12:24:28 GMT+0530 (India Standard Time).
and also i am try like this
  <script>
    var d = new Date();
    var c = new Date();
    alert(formatDate(c));
    alert(formatDate(d));
   function formatDate(d)
    {
   var month = d.getMonth();
   var day = d.getDate();
   var hours = d.getHours();
   var minutes = d.getMinutes();
   month = month + 1;
   month = month + "";
   if (month.length == 1)
  { 
    month = "0" + month;
   }
  day = day + "";
  if (day.length == 1)
 {
   day = "0" + day;
 }
  hour = hour + "";
 if (hour.length == 1)
 {
   hour = "0" + hour;
 }
  minute = minute + "";
  if (minute.length == 1)
 {
    minute = "0" + minute;
  }
  return d.getFullYear()+month + '' + day + ''+ hour + '' + minute + '';
    }</script> 
it is also not working properly. how can i do this in javascript and also i need to passed the veriable to database in another php file. please help me how can i do this
 
     
     
     
     
     
     
    