Sounds good - need a little help with the syntax
in postbit, I have added
$GLOBALS[forum]
before the php script, the id = $forum[forumid] <br>
before the php script, the phrase = $forum[ads] <br>
$GLOBALS[included_file]
----------------------------------------
In the php script, I have
global $forum;
print "test 1 --- $forum[ads] --- test 2";
----------------------------------------
The test style looks like this
"test 1 --- --- test 2";
(no ad phrase showing)
2 Problems to solve:
1) In postbit,
This shows the correct value
$forum[forumid] (shows as = 1)
but the column I added to the forum table doesn't show
$forum[ads] (= null, but should show the new ad phrase)
2) Once that's working what would be the syntax to show
$forum[ads] or $forum[forumid] in the php script?
Thanks
|