I'm aware that prepared statements are the ability to set up a statement once, and then execute it many times with different parameters, but are there any benefit of using it if you only use the query once per php-script?
Ie. I have a viewcounter that updates everytime a page is loaded: "update table set views=views+1 WHERE id = ?"