Ver Mensaje Individual
  #5 (permalink)  
Antiguo 30/06/2015, 14:22
Jotan32
 
Fecha de Ingreso: junio-2015
Mensajes: 16
Antigüedad: 8 años, 10 meses
Puntos: 0
Respuesta: Cambiarle el formato a la función now();

Investigue algo, al momento de mostrarla.

Código PHP:
Ver original
  1. <?php
  2.               $wsql = "select * from usuarios";
  3.               $result = mysql_query($wsql,$link);
  4.               echo mysql_error($link);
  5.               while($row = mysql_fetch_array($result)){
  6.               $fecha= date("F j, Y, g:i A", strtotime("now"));;
  7.              echo $fecha;
  8.               }
  9. ?>

Pero quiero que vez de ser strtotime("now") sea la fecha que yo tengo en mi base de datos!