Jump to content

ConnorSBB

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ConnorSBB's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Would either of you be interested in helping me with this project?
  2. Not really... xD Another problem I have discovered is the copyright is supposed to be in the footer. But I used Include'footer.php' and it placed it above the main content.
  3. I am developing the software I am wondering how I would insert them using myslq and php.
  4. Well, I am working on http://animelife.sitefrost.com/konaboards I have a few questions regarding how to set up some new stuff. It is a forum software... How would I go about setting up Post Count using MySQL and then displaying it under the users username in the threadview? Another thing similar to this. How would you I set up Signatures and Avatar fields using MySQL and displaying those for each member in the thread view? Any help is much appreciated.
  5. I still need help with this...
  6. Anyone know how to fix this?
  7. Hi, I am working on my own forum script. PlusBB http://plusbb.wehostyour.info/forums What I wanted to do is make it so the posts were flat rather than threaded. Well the tutorials I used ended up bringing me to something I do not want. I ended up with a Threaded Page view after combining all the tutorials. Here is the forumid .php script(mbindex.php) <?php if (!isset($_GET['MBID'])) exit; mysql_connect("localhost", "phpuser", "alm65z"); mysql_select_db("phpdb"); function showpost(&$parent) { extract($parent, EXTR_PREFIX_ALL, "msg"); $msg_DateSubmitted = date("jS of F Y", $msg_DateSubmitted); echo "<li><A HREF=\"read.php?Msg=$msg_ID\">$msg_Title</a> posted by <a href=\"mailto:$msg_Email\">$msg_Poster</a> on $msg_DateSubmitted"; $result = mysql_query("SELECT ID, Title, Poster, Email, DateSubmitted FROM mbmsgs WHERE MBID = {$_GET['MBID']} AND Parent = $msg_ID ORDER BY DateSubmitted DESC;"); if (mysql_num_rows($result)) { echo "<ul>"; while ($row = mysql_fetch_assoc($result)) { showpost($row); } echo "</ul>"; } } $result = mysql_query("SELECT ID, Title, Poster, Email, DateSubmitted FROM mbmsgs WHERE MBID = {$_GET['MBID']} AND Parent = 0 ORDER BY DateSubmitted DESC;"); if (!$result) exit; if (!mysql_num_rows($result)) { echo "This messageboard has no posts."; } else { echo "<ul>"; while ($row = mysql_fetch_assoc($result)) { showpost($row); } echo "</ul>"; } ?> <br /><br /><a href="post.php?MBID=<?php echo $_GET['MBID']; ?>">Post new message</a> And here is the topic view code(read.php) <?php if (!isset($_GET['Msg'])) exit; mysql_connect("localhost", "phpuser", "alm65z"); mysql_select_db("phpdb"); $result = mysql_query("SELECT MBID, Poster, Email, Title, Message, DateSubmitted FROM mbmsgs WHERE ID = {$_GET['Msg']};"); if (!$result) exit; if (!mysql_num_rows($result)) exit; extract(mysql_fetch_array($result), EXTR_PREFIX_ALL, 'msg'); $msg_DateSubmitted = date("jS of F Y", $msg_DateSubmitted); echo "Posted by <a href=\"mailto:$msg_Email\"> $msg_Poster</a> on $msg_DateSubmitted<br />"; echo "$msg_Message<br /><br />"; echo "<a href=\"post.php?Parent={$_GET['Msg']}&MBID=$msg_MBID\"> Reply to this post</a>"; ?> Can someone please help me fix this issue? Thanks
  8. We had tried something like that I believe.
  9. Index Coding is going well! We now have categories set up. Anyone know how to make it show the totals for the cat/forums and link to the latest topic?
  10. ConnorSBB

    Hi!

    Hi, My name is Connor. I am a 15 year old web developer. I am the lead developer of a php forum software called SoftBB. http://softbb.ulmb.com This forum looks pretty cool, I hope to stick around. -Connor
  11. SoftBB is a php forum script. We recently started development. We are looking for staff and testers as we hope to make this a main stream software once we have worked on it a bit. http://softbb.ulmb.com Please feel free to test to forum out as we need people to test it in different browsers, os, and to test features.
×
×
  • 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.