Broomy Posted October 18, 2006 Share Posted October 18, 2006 Hi. I have this code that someone wrote for me, but it gives me an error if I try and use it as follows:Parse error: syntax error, unexpected T_VARIABLEThe line with the error refers to $sql = "I'm useless at PHP but i'm hoping that someone might be able to point out what the problem might be.Thanks for any help.[code]<?php$currentNodeCreated = $node->created;$taxonomyTerm = 2 //this should not be hardcoded, it should be pulled from the node details for the current node taxonomy$sql = " SELECT node.title, node.nid FROM {node}, {term_node} WHERE node.nid = term_node.nid AND node.tid = $taxonomyTerm AND node.created < $currentNodeCreated AND node.status = 1 ORDER BY node.created DESC LIMIT 1";$result = db_query($sql);if($row = db_fetch_result($result) { $output .= l($row->title, "node/".$row->nid);}?>[/code] Link to comment https://forums.phpfreaks.com/topic/24314-php-code-problem-unexpected-t-variable/ Share on other sites More sharing options...
chris9902 Posted October 18, 2006 Share Posted October 18, 2006 the problem line is: "$taxonomyTerm = 2"you need a ";" after 2so it should be "$taxonomyTerm = 2;" Link to comment https://forums.phpfreaks.com/topic/24314-php-code-problem-unexpected-t-variable/#findComment-110589 Share on other sites More sharing options...
Broomy Posted October 18, 2006 Author Share Posted October 18, 2006 Thanks for the help, I appreciate it. That problem is now fixed but i'm not met with this error:Parse error: syntax error, unexpected '{' on the line that refers to this:if($row = db_fetch_result($result) {Any more help would be great,Thanks again. Link to comment https://forums.phpfreaks.com/topic/24314-php-code-problem-unexpected-t-variable/#findComment-110595 Share on other sites More sharing options...
phil88 Posted October 18, 2006 Share Posted October 18, 2006 if($row = db_fetch_result($result) {Should be;if($row = db_fetch_result($result)) {You just missed off a bracket :) Link to comment https://forums.phpfreaks.com/topic/24314-php-code-problem-unexpected-t-variable/#findComment-110596 Share on other sites More sharing options...
Broomy Posted October 18, 2006 Author Share Posted October 18, 2006 Ah, i'm good at this! :-\Thanks for that. Link to comment https://forums.phpfreaks.com/topic/24314-php-code-problem-unexpected-t-variable/#findComment-110603 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.