You'd have to have some sort of elite style to be targeting by someone wanting to rip it and if it was THAT good you should think about releasing a version of it to the public I spent 5 years in professional design and corperate imaging and i've never had to protect a design. <3
Once I get this working the wrong way, i'll try the join. I have now added template handling. I am getting [phpBB Debug] PHP Notice: in file /includes/session.php on line 2094: strtr() [function.strtr]: The second argument is not an array [phpBB Debug] PHP Notice: in file /includes/session.php on li...
Simple. Just use the "where group_id IN" clause that you used at first, and eliminate both of those outer loops -- both the "foreach" and the first "while". The only things you were missing in your first try was the "where" clause joining the two tables that ...
Greetings, One idea would be to not use $result again in another loop, while still inside a loop using $result. As doing so sets $result to be the value it was assigned last, thus messing up the outer 'while'. Hi, doesn't seem to causing an issue believe it or not, however you are right and I'll ch...
I.e. creating your whole custom page in the RTE, using php and refering in that, to a template I.D. (instead of a template name) and then being able to create that template again using the RTE afterwards (or before). Eliminating the need for FTP
Fairly simple to format the date and time, however the date and time are formated as a single string, by a board (or user) default date/time format. You'd need to change this format to a static format for this to work, without hours of programming. To edit both date/time today. 1. Open ./language/en...
Hehe, this may as well be moved to Mod requests! lol. I'm about to look for you and give you your step by step, but I need to know what page you want to chance the time colour on. If you mean all time colours, this is a major haul and for not much of a change! It doesn't have to be everywhere on th...
try echo '<td background="images/registerbg.gif"><font color="#000000"><a href="forum/viewtopic.php?f=' . $row['forum_id'].'&t=' . $row['topic_id'].'">' . $row['topic_title'].'</a></td>'; i've also correct your bloody formatting. HTML formatted with " 's and PH...
I am not sure exactly what kind of game you are thinking to implement with PHP/phpBB. http/php isn't exactly a nice backend to use for a game because you have to keep track of crap like sessions between page loads and if the page should refresh you'll need ajax crap on top of that, etc. If I would ...