Del Posted March 26, 2006 Share Posted March 26, 2006 I need help in building my forum because to view the categorys and forums i've used While then in the middle of that while another while making it not work because there it will only got thru the second while once due to the first one not reapeating cause it doesn't know it has to, Anyone got any Ideas and ask if i should post my script on Quote Link to comment https://forums.phpfreaks.com/topic/5838-php-forum-build-help-needed/ Share on other sites More sharing options...
TEENFRONT Posted March 26, 2006 Share Posted March 26, 2006 ...what? lolPost some code dude.. Quote Link to comment https://forums.phpfreaks.com/topic/5838-php-forum-build-help-needed/#findComment-20806 Share on other sites More sharing options...
Del Posted March 26, 2006 Author Share Posted March 26, 2006 [code]<?include("dbconnect.php");$a=0;$b=0;?><table cellpadding="0" cellspacing="0" width="430" style="border-color: #000000; border-width: 1px;"><?while($a < $catnum) {$cat=mysql_result($catresult,$a,"name");?><tr><td width="206" style="border-bottom: solid; border-left: solid; border-top: solid; border-width: 1px;"><font face="Verdana" size="2"> <b><? echo $cat; ?></b></font></td><td width="70" align="center" style="border-bottom: solid; border-left: solid; border-top: solid; border-width: 1px;"><font face="Verdana" size="1">Post Num</font></td><td width="85" align="center" style="border-bottom: solid; border-left: solid; border-top: solid; border-width: 1px;"><font face="Verdana" size="1">Thread Num</font></td><td width="150" align="center" style="border-bottom: solid; border-left: solid; border-top: solid; border-right: solid; border-width: 1px;"><font face="Verdana" size="2">Latest Post:</font></td></tr><?$a++;$forumquery="SELECT * FROM forums WHERE catgroup='$cat' ORDER BY `ordernum` ASC";$forumresult=mysql_query($forumquery);$forumnum=mysql_num_rows($forumresult);while($b < $forumnum){$catname=mysql_result($forumresult,$b,"name");$description=mysql_result($forumresult,$b,"description");?><tr><td width="206" style="border-bottom: solid; border-left: solid; border-width: 1px;"><font face="Verdana" size="2"> <b><? echo "$catname</b><br>$description"; ?></font></td><td width="70" align="center" style="border-bottom: solid; border-left: solid; border-width: 1px;"><font face="Verdana" size="1">Post Num</font></td><td width="85" align="center" style="border-bottom: solid; border-left: solid; border-width: 1px;"><font face="Verdana" size="1">Thread Num</font></td><td width="150" align="center" style="border-bottom: solid; border-left: solid; border-right: solid; border-width: 1px;"><font face="Verdana" size="2"><? echo "$cat -- $catname || "; ?></font></td></tr><?$b++;}echo "<tr><td> </td></tr>";}?></table>[/code]Thats my Code and at the top there is While and in that While is another While Quote Link to comment https://forums.phpfreaks.com/topic/5838-php-forum-build-help-needed/#findComment-20809 Share on other sites More sharing options...
Del Posted March 26, 2006 Author Share Posted March 26, 2006 Bump - Help Please Anyone? Quote Link to comment https://forums.phpfreaks.com/topic/5838-php-forum-build-help-needed/#findComment-20937 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.