RE: [PHP] V basic newbie problem

2002-07-03 Thread Dan Vande More
can Ellwood" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 03, 2002 8:43 AM Subject: [PHP] V basic newbie problem > I'm not sure if this is the right place for this but I'm just starting out > with php and MySQL > > I have succesfully go

Re: [PHP] V basic newbie problem

2002-07-03 Thread Erik Price
On Wednesday, July 3, 2002, at 10:43 AM, Duncan Ellwood wrote: > My problem arises when I want to fill in the subsequent rows of the > table > with the subesquent rows from the database. How do I create the > recordset > that will pull the info from the relevant subsequent rows for my > colu

Re: [PHP] V basic newbie problem

2002-07-03 Thread Martin Clifford
while($row = mysql_fetch_array($result_set)) { $field1 = $row['field1']; $field2 = $row['field2']; echo "\n"; echo "$field1\n"; echo "\n"; echo "$field2\n"; echo "\n"; } This will cycle through the rows, adding the values of field1 and field2 to the respective variables, th

Re: [PHP] V basic newbie problem

2002-07-03 Thread Julie Meloni
DE> I'm not sure if this is the right place for this but I'm just starting out DE> My problem arises when I want to fill in the subsequent rows of the table DE> with the subesquent rows from the database. How do I create the recordset DE> that will pull the info from the relevant subsequent rows f

RE: [PHP] V basic newbie problem

2002-07-03 Thread Jay Blanchard
[snip] Sorry to crash in! One quick question! Does the VB script work on NON-IE browsers? FletchSOD [/snip] VBscript works on ASP (Active Server Pages) servers...IIS most noteably, but you can get ChiliSOFT ASP for Linux and other *nix boxes. ASP can use VBscript, JSP, PerlScript, and other scr

Re: [PHP] V basic newbie problem

2002-07-03 Thread Ray Hunter
PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 03, 2002 8:43 AM Subject: [PHP] V basic newbie problem > I'm not sure if this is the right place for this but I'm just starting out > with php and MySQL > > I have succesfully got a database up and I have mana

Re: [PHP] V basic newbie problem

2002-07-03 Thread Scott Fletcher
it in a WHILE loop and RTFM > > -Original Message- > From: Duncan Ellwood [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 03, 2002 9:44 AM > To: [EMAIL PROTECTED] > Subject: [PHP] V basic newbie problem > > > I'm not sure if this is the right place for this but I'm j

RE: [PHP] V basic newbie problem

2002-07-03 Thread Jay Blanchard
Put it in a WHILE loop and RTFM -Original Message- From: Duncan Ellwood [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 9:44 AM To: [EMAIL PROTECTED] Subject: [PHP] V basic newbie problem I'm not sure if this is the right place for this but I'm just starting out wi

[PHP] V basic newbie problem

2002-07-03 Thread Duncan Ellwood
I'm not sure if this is the right place for this but I'm just starting out with php and MySQL I have succesfully got a database up and I have managed to populate the first row of the html table with the first row of dynamic content without too much problem. I have used the visual enviroment