Jump to content

zebra stripe dynamic table for ie8


mdemetri2

Recommended Posts

and obviously dreamweaver will also be adding code that might not be necessary.....but I wouldn't know what to remove - noob, remember....using dreamweaver might not be the best way to learn (or not as the case may be) but that is what I am using.

 

Is Dreamweaver writing the code for you...or are you just using it as a text editor? Using Dreamweaver in Code view doesn't add extra code that I'm aware of.

I will take a look at a while loop, and find out you mean by the other fetch

 

You're currently fetching the first row of data after executing the query...and then again in your do/while loop. If you switch to a while loop, you would only need to have the fetch in there once.

 

 

<?php
//...
 
$recordset1 = mysql_query($query_recordset1, $Connection1) or die(mysql_error());
$row_recordset1 = mysql_fetch_assoc($recordset1);
 
//...
?>
 
<?php } while ($row_recordset1 = mysql_fetch_assoc($recordset1)); ?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.