non coders get sick with stupid simple problems like when to use curly brackets and when not.
Is it php syntax or processWire syntax?
I found:
http://processwire.com/talk/topic/2682-drop-down-select-to-search-form/?p=26224
"Curly brackets only necessary if you've got two "->" in there"
but
http://processwire.com/talk/topic/1627-newbie-question-on-template-tags/?p=14916
<li><a$class href='{$child->url}'>{$child->title}</a></li>
only one "->" in there...
and
http://processwire.com/api/variables/pages/
$skyscrapers = $pages->get("/cities/chicago/")->find("floors>=60, sort=floors");
two "->"s but no curlies...
two hours trying to find out and no result...
this is what I want to do:
if($section->knots) {
echo "<tr>";
echo "<td><p>$pages->get('/FixedData/')->knotsLang:</p></td>";
echo "<td><p>{$section->knots}</p></td>";
echo "</tr>";
}