Revan Posted July 17, 2006 Share Posted July 17, 2006 Hello, my name is Revan and I am very new to PHP. My question is directed towards anyone who is familiar with the MySQL database setup of Invision Power Boards. What I want to do is connect to the MySQL database, get the topic title if it has a certain description, the url, and save it to be displayed in a sidebar for a webpage. As of the moment, I cannot say the address of the page... Here is the code so far:[code]<?phprequire('config.php');$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');$sql = 'SELECT `title` FROM `ibf_topics` WHERE `description`=\'=SCDTI=\'';mysql_close($conn);?>[/code]Any help would be appreciated ;) Quote Link to comment https://forums.phpfreaks.com/topic/14843-ipb-syndicate/ Share on other sites More sharing options...
trq Posted July 17, 2006 Share Posted July 17, 2006 Welcome to the board. We have a specific forum for help with third party scripts, this really should be posted in there. Quote Link to comment https://forums.phpfreaks.com/topic/14843-ipb-syndicate/#findComment-59322 Share on other sites More sharing options...
Revan Posted July 17, 2006 Author Share Posted July 17, 2006 This is a script I wrote myself. Quote Link to comment https://forums.phpfreaks.com/topic/14843-ipb-syndicate/#findComment-59323 Share on other sites More sharing options...
ChaosXero Posted July 17, 2006 Share Posted July 17, 2006 $sql = 'SELECT `title` FROM `ibf_topics` WHERE `description`=\'=SCDTI=\''; change to $sql = "SELECT `title` FROM `ibf_topics` WHERE `description`= '=SCDTI=' "; and try again. also, you need a query statement in there.Like:$result = mysql_query($sql);$row = mysql_fetch_array($result);echo $row['id'] // assuming your database has an 'id' field. Replace ID with feild name. You could also use a loop here.\Hope this helps. I was recently stuggling with this too. Quote Link to comment https://forums.phpfreaks.com/topic/14843-ipb-syndicate/#findComment-59324 Share on other sites More sharing options...
Prismatic Posted July 17, 2006 Share Posted July 17, 2006 Why was this moved? It's not a third party script. Quote Link to comment https://forums.phpfreaks.com/topic/14843-ipb-syndicate/#findComment-59325 Share on other sites More sharing options...
trq Posted July 17, 2006 Share Posted July 17, 2006 Yeah I see now. Anyway.. sorry, im not familiar with IPB... you might be lucky though. Quote Link to comment https://forums.phpfreaks.com/topic/14843-ipb-syndicate/#findComment-59326 Share on other sites More sharing options...
Revan Posted July 17, 2006 Author Share Posted July 17, 2006 [quote author=ChaosXero link=topic=100874.msg398582#msg398582 date=1153142842]$sql = 'SELECT `title` FROM `ibf_topics` WHERE `description`=\'=SCDTI=\''; change to $sql = "SELECT `title` FROM `ibf_topics` WHERE `description`= '=SCDTI=' "; and try again. also, you need a query statement in there.Like:$result = mysql_query($sql);$row = mysql_fetch_array($result);echo $row['id'] // assuming your database has an 'id' field. Replace ID with feild name. You could also use a loop here.\Hope this helps. I was recently stuggling with this too.[/quote]Thanks. I'll try that as soon as the webmaster gets online. Quote Link to comment https://forums.phpfreaks.com/topic/14843-ipb-syndicate/#findComment-59327 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.