Database PHP Class
I’m back with another chunk of code. This time, it’s my database class. I got sick of coming across classes that didn’t have everything I needed, or didn’t do it correctly. One of my biggest problems was an inability to nest query calls within another query result’s output. Example: <?php // main query // gets a list of companies from the companies table $a = "SELECT id, company_name FROM companies"; $a = $db->query($a); while ($aa = $db->fetch_object($a) ) : echo '<div...
read more