Re: Analyze Dreaweaver's PHP/MySQL code

2004-09-11 Thread Robb Kerr
On Fri, 10 Sep 2004 17:49:21 -0700, Andrew Kreps wrote: > You have a pretty good handle on what's happening there, I hope I can > add some clarity. > > The Resource Id you're trying to echo is a pointer to a MySQL result > set, you aren't actually working with the data yet. That's where the > my

Re: Analyze Dreaweaver's PHP/MySQL code

2004-09-10 Thread Andrew Kreps
You have a pretty good handle on what's happening there, I hope I can add some clarity. The Resource Id you're trying to echo is a pointer to a MySQL result set, you aren't actually working with the data yet. That's where the mysql_fetch functions come in. The mysql_fetch_assoc function fetches

Re: Analyze Dreaweaver's PHP/MySQL code

2004-09-10 Thread David Blomstrom
--- Robb Kerr <[EMAIL PROTECTED]> wrote: > I'm trying to inform myself about exactly what > Dreamweaver's PHP/MySQL code > is doing when creating a recordset and repeat > region. Please help if you > can. > > DW MX generates the following to create a simple > recordset... > Line 1) require_once(

Analyze Dreaweaver's PHP/MySQL code

2004-09-10 Thread Robb Kerr
I'm trying to inform myself about exactly what Dreamweaver's PHP/MySQL code is doing when creating a recordset and repeat region. Please help if you can. DW MX generates the following to create a simple recordset... Line 1) require_once('Connections/TBA.php'); Line 2) mysql_select_db($database_TBA