|
|
| Author |
Message |
blackbeltboy47
Well Known User

Joined: 03 Apr 2006
Posts: 111
|
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: 3913
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: 111
|
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: 17279
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: 111
|
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: 17279
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 |
|
 |
blackbeltboy47
Well Known User

Joined: 03 Apr 2006
Posts: 111
|
Posted: December 6th 2010, 7:06 pm Post subject: |
|
|
Ok, so I originally decided to try and write this hack because I thought it was a good idea and would help me learn a good deal of php. Though I've learned a lot by attempting to write the code, I just don't have enough knowledge to make some of the features I want to work.
So, I was wondering if there is anyone out there willing to help me out with some of the coding and co-author this hack with me? If there is I'd greatly appreciate it because I'm tired of being stuck where I am messing around with the same bits of code. If you're interested, please respond to this post or send me a pm. _________________ -blackbeltboy47 |
|
| Back to top |
|
 |
|