I have one while loop which displays data from the database. Now I want multiply two values in one row and display the result in the same row, the same way multiply the values
From Where you are getting $rr1??
$rr1
You can have
echo "" . $row['item'] * $row['amount'] . "";
Hope this is what you want...