View Single Post
Old 08-03-2005, 02:27 PM   #3 (permalink)
Rawb
Crazy
 
Location: Salt Town, UT
Welcome to the PHP fold, if there is anything you need, just feel free to bug me.

I've been programming PHP since the early 3.0 days, and doing CGI in C before that, so I know my way around a bit.

Here is some pretty generic and easy code to work with that should let you work a bit faster.

It's totally undocumented, but it should be pretty easy to figure out, overall, I really like it, and end up rewriting it everytime I work for a new company, so I finally rewrote it from scratch and BSD licenced it (so you can do whatever you want with it, I don't care).

Here it is: http://www.rawb.org/~rawb/phplibs.zip

For a fun first thing to try, after you have the libraries loaded, try:
maketable(dbread("SELECT something FROM somewhere"));
Rawb is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76