Mi problema es el siguiente tengo un codigo a mi base de datos lo hice en dreamweaver y quiero sumar dos campos de una tabla y que me los enseñe en una tabla todos los registros que mande a sumar
este es mi codigo... que tengo ahorita pero no me sale el resultado
<?php require_once('Connections/suma.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;
}
}
$maxRows_Recordset1 = 10;
$pageNum_Recordset1 = 0;
if (isset($_GET['pageNum_Recordset1'])) {
$pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
}
$startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
mysql_select_db($database_suma, $suma);
$query_Recordset1 = "SELECT precio, precios FROM prueba";
$query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
$Recordset1 = mysql_query($query_limit_Recordset1, $suma) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
if (isset($_GET['totalRows_Recordset1'])) {
$totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
} else {
$all_Recordset1 = mysql_query($query_Recordset1);
$totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
}
$totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
?>
<!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>Untitled Document</title>
</head>
<body>
<table border="1" align="center" cellpadding="2" cellspacing="2">
<?php $result = mysql_query("SELECT (precio+precios) as total FROM prueba");
$row = mysql_fetch_array($result, MYSQL_ASSOC);
echo $Recordset1["total"]; ?>
<tr>
<td>precio</td>
<td>precios</td>
<td>Total</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_Recordset1['precio']; ?></td>
<td><?php echo $row_Recordset1['precios']; ?></td>
<td><?php echo $Recordset1['total']; ?></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>
/////////////////////////////////////////////////////////////////////////
y cuando quiero ver los resultados pues no sale nada
osea ejemplo registro id 1= (campo1 en mi tabla llamado precio)10+15 (campo2 en mi tabla llamado precioa)= 25(resultado campo (total))
registro id 2= (campo1 en mi tabla llamado precio)30+15 (campo2 en mi tabla llamado precioa)= 45(resultado campo (total))
eso es lo que quiero que salga pero no sale
alguien me podria ayudar plsss pke lo necesito sakar esop para poderlo poner en un proyecto... gracias muchas gracias...