petteyg359
01-28-2008, 03:11 AM
I get the error "Parse error: syntax error, unexpected '"', expecting ']' in /home/dysplace/public_html/eve-ocf/eveit.php on line 161" when trying to run $corp = "ocf";
$ocfapidata = "<tbody><tr><td class=\"thead\" colspan=\"3\"><a style=\"float:".$stylevar[right]."\" href=\"#top\" ";
$ocfapidata .= "onclick=\"return toggle_collapse('359_eveit_".$i."')\"><img id=\"collapseimg_359_eveit_".$i."\" ";
//OFFENDING LINE BELOW
$ocfapidata .= "src=\"".$stylevar[imgdir_button]."/collapse_thead$vbcollapse[collapseimg_359_eveit_".$i."].gif\" alt=\"\" ";
//OFFENDING LINE ABOVE
$ocfapidata .= "border=\"0\" /></a>".$attr[$corp]['charactername']."</td></tr></tbody><tbody id=";
$ocfapidata .= "\"collapseobj_359_eveit_".$i."\" style=\"\$vbcollapse[collapseobj_359_eveit_".$i."]\"><tr><td class=\"alt1\$
$ocfapidata .= "Character: <font color=\"#FF7800\">".$attr[$corp][$i]['charname']."</font><br />";
$ocfapidata .= "</font></td><td class=\"alt1\">";
$ocfapidata .= $skills[$sit[$corp][$i]['trainid']]['name'];
$ocfapidata .= " ".$sit[$corp][$i]['trainto']."</td><td class=\"alt1\">".$sit[$corp][$i]['trainleft']."</td></tr>";
$ocfapidata .= "</tbody>";
I have $ocfapidata in my template, and it displays just fine when I change the offending line to $ocfapidata .= "src=\"".$stylevar[imgdir_button]."/collapse_thead$vbcollapse[collapseimg_359_eveit_0].gif\" alt=\"\" "; except for that the 0 being there means only the last output box is displayed.
None of the other similar lines cause a problem, but as I am looping through an array to display, I need that eveit_$i].gif rather than eveit_0].gif. I could put a switch case for every line, but that'd be rather inefficient with many users.
Any suggestions on how to get around that error? I've tried using {$i} in the code, same error. It really doesn't want me to use a variable there, for some reason. I know $i has a value, if I place echo $i; in my code I get 012345678910 at the top of my page.
One other slightly unrelated question, when the collapsible box is collapsed, there's no title on the bar that the image is on that signifies what is in the box. Is there a way to give the box some header text?
$ocfapidata = "<tbody><tr><td class=\"thead\" colspan=\"3\"><a style=\"float:".$stylevar[right]."\" href=\"#top\" ";
$ocfapidata .= "onclick=\"return toggle_collapse('359_eveit_".$i."')\"><img id=\"collapseimg_359_eveit_".$i."\" ";
//OFFENDING LINE BELOW
$ocfapidata .= "src=\"".$stylevar[imgdir_button]."/collapse_thead$vbcollapse[collapseimg_359_eveit_".$i."].gif\" alt=\"\" ";
//OFFENDING LINE ABOVE
$ocfapidata .= "border=\"0\" /></a>".$attr[$corp]['charactername']."</td></tr></tbody><tbody id=";
$ocfapidata .= "\"collapseobj_359_eveit_".$i."\" style=\"\$vbcollapse[collapseobj_359_eveit_".$i."]\"><tr><td class=\"alt1\$
$ocfapidata .= "Character: <font color=\"#FF7800\">".$attr[$corp][$i]['charname']."</font><br />";
$ocfapidata .= "</font></td><td class=\"alt1\">";
$ocfapidata .= $skills[$sit[$corp][$i]['trainid']]['name'];
$ocfapidata .= " ".$sit[$corp][$i]['trainto']."</td><td class=\"alt1\">".$sit[$corp][$i]['trainleft']."</td></tr>";
$ocfapidata .= "</tbody>";
I have $ocfapidata in my template, and it displays just fine when I change the offending line to $ocfapidata .= "src=\"".$stylevar[imgdir_button]."/collapse_thead$vbcollapse[collapseimg_359_eveit_0].gif\" alt=\"\" "; except for that the 0 being there means only the last output box is displayed.
None of the other similar lines cause a problem, but as I am looping through an array to display, I need that eveit_$i].gif rather than eveit_0].gif. I could put a switch case for every line, but that'd be rather inefficient with many users.
Any suggestions on how to get around that error? I've tried using {$i} in the code, same error. It really doesn't want me to use a variable there, for some reason. I know $i has a value, if I place echo $i; in my code I get 012345678910 at the top of my page.
One other slightly unrelated question, when the collapsible box is collapsed, there's no title on the bar that the image is on that signifies what is in the box. Is there a way to give the box some header text?