Code:
<?php
class verify{
   $db = ... db connection stuff

   function get_suff(){

   }

   function get_other_stuff() {

   }

}
If I define a db connection above the functions in a class is that db connection available in all the functions in the class?