Ok,
Simply I need this to add multiply two vars in the same array and output them to a var, but it is printing the variables and now outputing them. code follows
while ($row =@ mysql_fetch_array($query)) {
$table_body .="</p>
<table>
<tr><td>$row[share]</td>
<td>$row[number]</td>
<td>$row[price]</td>
<td>$cost=($row[price]*$row[number])</td>
</tr>";
}
Thanks