Jump to content

unexpected T_STRING


hjames82

Recommended Posts

I am trying to add a URL to the following code but keep receiving the error mentioned in the subject. I don't know much about php and did a search on google and yahoo but came up with no similar matches.

 

Any help would be appreciated.

 

Original Code:

    $msg .= ($test->passed) ? "PASS" : "FAIL" ;

 

Modified Code:

    $msg .= ($test->passed) ? "PASS" : "FAIL - <a href="index.php?option=com_lms&task=showresults">Retake The Course</a>" ;

 

Thanks,

James

Link to comment
https://forums.phpfreaks.com/topic/133820-unexpected-t_string/
Share on other sites

$msg .= ($test->passed) ? "PASS" : "FAIL - <a href=\"index.php?option=com_lms&task=showresults\">Retake The Course</a>" ;

or

$msg .= ($test->passed) ? "PASS" : 'FAIL - <a href="index.php?option=com_lms&task=showresults">Retake The Course</a>' ;

Link to comment
https://forums.phpfreaks.com/topic/133820-unexpected-t_string/#findComment-696481
Share on other sites

Ok I see now your reffering to the "\" correct?

 

I tried using your code to se if it would work unfortunately I got this error: Parse error: syntax error, unexpected T_STRING in /home/.sylvie/hjames82/test2.bamsites.ifoundjoomla.com/components/com_lms/lms.php(1423) : eval()'d code on line 6

 

This is line 1423:

eval ("\$message = \"$msg\";");

Link to comment
https://forums.phpfreaks.com/topic/133820-unexpected-t_string/#findComment-696482
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.