|
|
| Author |
Message |
blackbeltboy47
Well Known User

Joined: 03 Apr 2006
Posts: 106
Location: USA!
|
Posted: March 2nd 2008, 11:55 pm Post subject: |
|
|
Since the release of Gold, I have decided to start this project over from scratch. My progress has been updated to fit what I have done so far (basically nothing). Progress for this hack may be slow because I have been and will be pretty busy, but I will try to work on it whenever I find time. _________________ blackbeltboy47 |
|
| Back to top |
|
 |
~HG~
Dedicated User
Joined: 08 Nov 2003
Posts: 3803
Location: Australia
|
Posted: March 3rd 2008, 2:24 am Post subject: |
|
|
Thats not a real problem blackbeltboy47 as there are still a lot of mods for phpBB3 in DEV and they could be months away yet.
Everyone with phpBB3 just needs to be patient if they want any particular mods. _________________ ~HG~
|| rodneyangell.com || || phpbb-tutorials.com ||My Hacks |
|
| Back to top |
|
 |
EY
Not So New User
Joined: 18 Mar 2008
Posts: 65
|
|
| Back to top |
|
 |
blackbeltboy47
Well Known User

Joined: 03 Apr 2006
Posts: 106
Location: USA!
|
Posted: June 3rd 2008, 11:28 am Post subject: |
|
|
I actually have just began working on this MOD again and I have a little bit of it done _________________ blackbeltboy47 |
|
| Back to top |
|
 |
Patrick
Admin/Webmaster

Joined: 11 May 2001
Posts: 15372
Location: Harbinger, NC, U.S.A.
|
|
| Back to top |
|
 |
Mallory
Not So New User
Joined: 26 Dec 2008
Posts: 25
|
Posted: December 26th 2008, 2:47 am Post subject: |
|
|
| Could be very usefull, since we need a support ticket system. |
|
| Back to top |
|
 |
blackbeltboy47
Well Known User

Joined: 03 Apr 2006
Posts: 106
Location: USA!
|
Posted: April 17th 2009, 9:18 pm Post subject: |
|
|
Now I know it's been a long time since I've worked on this, but I'm occasionally making changes here and there.
I've run into a problem. My php knowledge is pretty limited and I'm sure this is a simple fix. I'm trying to display a list of categories on a page, but when i view it, only one of the two categories I put into the database displays. Here is the sql code I am using:
| Code:
|
$sql = 'SELECT *
FROM ' . KB_TABLE . "
ORDER BY kb_id";
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result))
{
$kb_id = $row['kb_id'];
$kb_name = $row['kb_name'];
$kb_desc = $row['kb_desc'];
}
$template->assign_block_vars('catrow', array(
'KB_ID' => $kb_id,
'KB_NAME' => $kb_name,
'KB_DESC' => $kb_desc)
);
|
If anyone could help me out, I will be very grateful.
EDIT: This problem has been resolved _________________ blackbeltboy47 |
|
| Back to top |
|
 |
Patrick
Admin/Webmaster

Joined: 11 May 2001
Posts: 15372
Location: Harbinger, NC, U.S.A.
|
|
| Back to top |
|
 |
spock76
New User
Joined: 28 Aug 2009
Posts: 2
|
Posted: August 28th 2009, 6:30 pm Post subject: |
|
|
| any news about this hack? |
|
| Back to top |
|
 |
|