I really never was very good with math but now I am looking to PHP to do some math functions for me.
Right now I have a database with 2 tables. This database is used for land surveying information. One table stores the land details and the second database stores the owners who own land.
I was looking to add a function to make life a little bit easier working within this database. Here's what I am currently having troubles figuring out.
I need to pull $value from the details table and add that value to the $land information from the owners table. I then need to take that new value ($value + $land) and have it multiply the new value by 3.
Here's a break down.
$value1 + $land = $new1 x 3 = $new2
Any ideas on where I can start?
Thanks in advance!