Problemas al volcar consulta mysql ayuda
Publicado por gustavo ojeda (31 intervenciones) el 20/02/2014 20:40:34
[buenas tengo este codigo
lo pongo en el sql y me dice que fino me muestra informacion en el servidor pero cuando quiero volcar la informacion en php no me sale nada simplemente en blanco, me podrian ayudar por fa como podria hacer?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php require_once('../../Connections/mundosalud.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$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_mundosalud, $mundosalud);
$query_prueba = "SELECT MONTH(fecha) mes, COUNT(*) FROM spa WHERE YEAR(fecha) = 2014 GROUP BY MONTH(fecha)";
$prueba = mysql_query($query_prueba, $mundosalud) or die(mysql_error());
$row_prueba = mysql_fetch_assoc($prueba);
$totalRows_prueba = mysql_num_rows($prueba);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<p> </p>
<p> </p>
<form id="form1" name="form1" method="post" action="">
<p></p>
<?php echo $row_prueba['fecha']; ?>
<p> </p>
<p></p>
<p> </p>
<p> </p>
</form>
<p> </p>
</body>
</html>
<?php
mysql_free_result($prueba);
?>
lo pongo en el sql y me dice que fino me muestra informacion en el servidor pero cuando quiero volcar la informacion en php no me sale nada simplemente en blanco, me podrian ayudar por fa como podria hacer?
Valora esta pregunta


0