hola a todos, estoy haciendo un chat y tengo un inconveniente con el código ,
los mensajes que trato de enviar no se me publican en pagina index.php pero me figura en la base de datos ,
aqui dejo el código que estoy utilizando
estoy utilizando Dreamweaver
<?php require_once('Connections/BDsgl.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_BDsgl, $BDsgl);
$query_Recordset1 = "SELECT `registro gamers xbox`.mensajes FROM `registro gamers xbox` ORDER BY `registro gamers xbox`.id DESC LIMIT 5";
$Recordset1 = mysql_query($query_Recordset1, $BDsgl) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
while ($fila = mysql_fetch_array ($Recordset1, MYSQL_ASSOC)) {
printf ("usuario: %s", $fila ["mensajes"]);
echo "<br><hr>";
}
mysql_free_result($Recordset1);
?>