I have a mysterious problem. I have a php language array like this:
$lang['tip1054'] = '<b>Resource Error:</b>%s <br />
<b>OS:</b> %s <br />
<b> Ram:</b> %s <br />
<b> CPU:</b> %s <br />
';
I would show it in a tooltip that is written by javascript the function is used like this:
<span class='haveHelp' onMouseOver="ShowTip(' <?php printf ($lang['tip1054'],$error,$os,$ram,$cpu); ?> ')"> </span>
But it shows nothing. I used firebug to see what problem is. Faced this error:
SyntaxError: unterminated string literal
[Break On This Error]
ShowTip('<b>Resource Error:</b> 1054
and this is HTML Output:
<span class='haveHelp' onMouseOver="ShowTip('<b>Resource Error:</b>1054 <br />
<b>OS:</b> Windows Xp <br />
<b> Ram:</b> 1024MB <br />
<b> CPU:</b> Corei7-5130 <br />')">Error 1054</span>

<span>element? – Dai Oct 1 '12 at 1:33