Thanks for the reply. I thought I had to add into that bit of code before posting it but when I do i get errors.
Its a mod for phpbb forums and the mod has not been released so its a use at your own risk thing.
My host installed it for me and said I just need to do this to plug in the info that I want the mod to use.
It posts rss feeds onto my forums. I just need to use phpmyadmin to tell it what rss feeds to post.
I'll try my lock on the phpbb forum again.
Thanks again for the help
EDIT ok here is the error i'm getting
CODE
Error
SQL query:
INSERT INTO `phpbb_lastrss_autopost` (
`name` ,
`url` ,
`next_check` ,
`next_check_after` ,
`destination_id` ,
`enabled`
)
VALUES (
'Game Reviews', 'http://rss.gamespot.com/misc/rss/gamespot_updates_reviews.xml', 0, 1, 4, 1
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 4
When I type this into my sql
CODE
INSERT INTO `phpbb_lastrss_autopost`
(`name`, `url`, `next_check`, `next_check_after`, `destination_id`, `enabled`)
VALUES
('Game Reviews', 'http://rss.gamespot.com/misc/rss/gamespot_updates_all_games.xml', 0, 1, '4', 1;