Thank you for answer..
<?php
if( isset($_POST['oak']) ){
$oak= $_POST['oak'];
$sql = "UPDATE users SET oak=$oak+1";
echo "You cut a tree down!";
}
?>
<form action="demo.php" method="POST">
<input type="submit" name="oak" value="Cut a tree!">
</form>
So, now i'm thinking.. ..move right direction with this code?
Code not show errors or smth but now i stand little problem, cut a tree and page refesh show me the ECHO and not updated my oak amounts on sql.