Jump to content

PHP code problem - unexpected T VARIABLE


Broomy

Recommended Posts

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_VARIABLE

The 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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.