[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

All kindsa new stuff



Hey guys,

All kindsa stuff to report.  

/search/simple.php3 is all dynamic now... I'm going to port it over to
advanced.php3 and incorporate Aaron's changes on his version of advanced.
Header/Footers should be wrapped up today/tonight.

I've built /includes/functions.php3 for use by php3 pages.  I'm working on
functionizing most things we'll use in several places.  I'm going to begin
documenting the stuff, but please take a look at it.  Some things you won't see
until my cvs commit tonight.

I'm building DB classes so that we can achieve backend independance as in Perl.
Also, these classes will incorporate the error checking and all as well.  I'd like
for php developers to begin using these classes to perform there querys after I
post them this evening, instead of using the mysql functions directly.

A quick example of what these classes will look like:

rs = new RecordSet;
rs->set_query("select * from Users");

while (i < rs->recordcount) {

	echo $rs("Handle") . " ---> " . $rs("RoleID");
	$rs->next_record;
	$i++;
	}

Thats not a final example, meaning it could change a little between now an this
evening.  Thoughts?

I hope to have the footer/headers done tonight... shouldn't be a problem...

Thats all I can think of for now...

Jason