RE: [PHP] V basic newbie problem

2002-07-03 Thread Dan Vande More
DMX is a little shy on descriptions, but you want to use the "Dynamic Table" under the Application Section. I make these 5 times a day. -Original Message- From: Ray Hunter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 8:52 AM To: PHP GEN; Duncan Ellwood Subject: R

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
try something like this echo ''; while( $result = mysql_fetch_array( $q ) ) { output here... } echo ''; S RAY HUNTER email: [EMAIL PROTECTED] www: http://www.venticon.com aim: spinebl8d3 - Original Message - From: "Duncan Ellwood" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Se

Re: [PHP] V basic newbie problem

2002-07-03 Thread Scott Fletcher
Sorry to crash in! One quick question! Does the VB script work on NON-IE browsers? FletchSOD "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message 002601c222a0$8d8e7330$8102a8c0@niigziuo4ohhdt">news:002601c222a0$8d8e7330$8102a8c0@niigziuo4ohhdt... > Put it in a WHILE loop and RTFM > > -Origin

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 with php and M