Quote:
Originally Posted by Abe1
Nope. Just make sure you dont have any where you are change what f or forumid equals to.
|
Ah. Yes I do do that.
We have different forums for 'Wanted' adverts and 'For Sale' adverts.
If someone posts from either and selects the other option (i.e. posts a 'Wanted' advert from the 'For Sale' forum) then I (rather usefully, I thought) change the forumid so that the advert goes tot he right place.
PHP Code:
if ($formforumid == 62) {
if ($advert_type == "Wanted:") {
$formforumid = 198;
}
} elseif ($formforumid == 198) {
if ($advert_type == "For Sale:" or $advert_type == "For Trade:") {
$formforumid = 62;
}
}
however I don't think that is the problem here since I am posting into forum 115.
I guess I'll have to struggle through it. Unless anyone can throw me a rope?
Thanks