Veo que cuando realizas el query no le pasas la conexión:
Código Javascript
:
Ver original$result=mysql_query("SELECT SUM(Debe-Haber) as Total FROM Gastos WHERE Proveedor='$u' AND Eliminado='0'", falta_la_conexion);
Mira la manera como lo aria yo:
Código PHP:
Ver original<?php
include_once "conexionmy.php";
$nombre = $_SESSION['NProv'];
$sql3 = mysql_query("SELECT * FROM transaccint WHERE Operador='$nombre' AND Eliminado='0' AND CargaGastos='0' ORDER BY Fecha DESC", falta_la_conexion
) or
die(mysql_error()); $nfile = "";
/*SALDO*/
$result = mysql_query("SELECT SUM(Debe-Haber) as Total FROM Gastos WHERE Proveedor='$u' AND Eliminado='0'", falta_la_conexion
) or
die(mysql_error());
//setlocale(LC_ALL,'es_AR');
/*function declarau(){
echo $_POST['id'] = $u;
}*/
?>
<!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></title>
</head>
<body>
<form action="" method="post" class="login" style="width:890px">
<caption> Ventas Sin Compras Operador</caption>
<? echo $nombre; ?>
<table cellpadding="5" border="0" align="center" bordercolor="#GGGG" cellspacing="0">
<thead>
<tr bgcolor="#EFEEEF">
<td width="200">Fecha</td>
<td width="200" align="left">N File</td>
<td width="200" align="left">Cliente</td>
<td width="200" align="right">Importe</th>
</tr>
</thead>
<?php
echo '<tbody id="titu">';
echo ' <tr>';
$FechaE = explode("-",$row['campo_3']); $Fecha = $FechaE[2]."/".$FechaE[1]."/".$FechaE[0];
echo ' <td width="200">'.$Fecha.'</td>';
echo ' <td width="200" align="left">'.$row['campo_0'].'</td>';
if ($nfile != $row['campo_0']){
$nfile = $row['campo_0'];
}
echo ' <td width="200" align="left">'.$row['campo_4'].'</td>';
echo ' <td width="200" align="left">'.$row['campo_5'].'</td>';
echo " <td><a href='hola.php?id=$row[campo_0]'>".$nfile."</a></td>";
echo ' </tr>';
}
$_SESSION['Nfile'] = $nfile;
echo $nfile;
echo ' <tr>';
echo ' <td colspan="3">Saldo Cuenta:</td>';
echo ' <td colspan="2">'.$english_format_number2 = number_format($total['Total'], 2).'</td>'; echo ' </tr>';
echo '</tbody>';
?>
</table>
</form>
</body>
</html>