PHP Button?

It's mainly for posting codes. When you enclose codes with the PHP tag, the PHP syntax are automatically highlighted. For example:

PHP:
   unset ($defpmsetting);
   $defpmsettings = $DB_site->query ("SELECT setting.varname, setting.value FROM setting");
   while ($row = $DB_site->fetch_array ($defpmsettings)) {
      $defpmsetting[$row['varname']] = $row['value'];
   }
 
Cool, thats what I figured, I just wanted to be sure. By the way, will the code run someone in your post?
 
Back
Top Bottom