contiw Posted August 5, 2010 Share Posted August 5, 2010 Please bear with me. In an html file there is an <!-- BEGIN poll --> ..... <!-- END poll --> I need to draw a separation hr between all rows escept the first one. I believe I need a counter. Please show me how to do this. Thank you. Quote Link to comment https://forums.phpfreaks.com/topic/209856-am-i-in-row-number-1-noob-noob-here/ Share on other sites More sharing options...
monkeytooth Posted August 5, 2010 Share Posted August 5, 2010 Your going to have to elaborate a lot more as to what your doing and how? Otherwise none of us can tell by your post what your trying to do, or how your already trying to make it happen. And by elaborate what your doing I mean your going to have to share this code that your using to draw your results from already. Quote Link to comment https://forums.phpfreaks.com/topic/209856-am-i-in-row-number-1-noob-noob-here/#findComment-1095421 Share on other sites More sharing options...
pengu Posted August 5, 2010 Share Posted August 5, 2010 Is this question even related to PHP? Quote Link to comment https://forums.phpfreaks.com/topic/209856-am-i-in-row-number-1-noob-noob-here/#findComment-1095442 Share on other sites More sharing options...
dezkit Posted August 5, 2010 Share Posted August 5, 2010 Use something like this $row = mysql_fetch_array(); echo $row["name"]; while($row = mysql_fetch_array()){ echo $row["name"]; echo "<hr>"; } Quote Link to comment https://forums.phpfreaks.com/topic/209856-am-i-in-row-number-1-noob-noob-here/#findComment-1095572 Share on other sites More sharing options...
contiw Posted August 5, 2010 Author Share Posted August 5, 2010 ThankYou Dezkit.http://www.phpfreaks.com/forums/Smileys/nrg_alpha/happy-02.gif Quote Link to comment https://forums.phpfreaks.com/topic/209856-am-i-in-row-number-1-noob-noob-here/#findComment-1095616 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.