Para grabar la fecha en formato correcto de flash a Mysql (aaaa-mm-dd) he hecho una chapucilla pero funciona, pero para pasar de php a flash no se hacerlo me lo lee igual (aaaa-mm-dd) y yo quiero que formatee la fecha así (dd-mm-aaaa).
Este es mi script aver si hay alguien que me eche una mano
Código PHP:
switch($action) {
case 'read' :
$sql = 'SELECT * FROM `' . $table . '`';
$allComments = mysql_query($sql, $DBConn) or die("Error: " . mysql_error());
$numallComments = mysql_num_rows($allComments);
$sql .= ' ORDER BY `fecha` DESC LIMIT ' . $_GET['NumLow'] . ', ' . $numComments;
$fewComments = mysql_query($sql, $DBConn) or die("Error: " . mysql_error());
$numfewComments = mysql_num_rows($fewComments);
print '&totalEntries=' . $numallComments . '&';
print "<br>&entries=";
if($numallComments == 0) {
print "No hi ha cap concert previst...";
} else {
$i=0;
while ($array = mysql_fetch_array($fewComments)) {
$name = mysql_result($fewComments, $i, 'titulo');
$email = mysql_result($fewComments, $i, 'nom');
$comments = nl2br (mysql_result ($fewComments, $i, 'noticia'));
$fecha = mysql_result($fewComments, $i, 'fecha');
print '<b>' . $name . '</b> <br>' . $fecha . '<br><h5>' . $email . '</h5> <br><br>' . $comments . '<br><br><br>';
$i++;
}
}
if($_GET['NumLow'] > $numallComments) {
print 'No hi han més entrades!&';
}
break;