soltek Posted October 20, 2011 Share Posted October 20, 2011 Hey there, could you give this at this piece of code? It's giving me this error: Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/xxxxx/public_html/Tyler/index.php on line 99 (the line 99 is the one with the sprintf) echo" if( $diff=@get_time_difference($start, $end) ) { sprintf( '%2d days %02dh%02dm', $diff['days'], $diff['hours'], $diff['minutes'] ); } "; Danke! Link to comment https://forums.phpfreaks.com/topic/249481-parse-error/ Share on other sites More sharing options...
requinix Posted October 20, 2011 Share Posted October 20, 2011 You need to escape those $s. Link to comment https://forums.phpfreaks.com/topic/249481-parse-error/#findComment-1280913 Share on other sites More sharing options...
soltek Posted October 20, 2011 Author Share Posted October 20, 2011 You need to escape those $s. I'm a noob - ORLY - could you tell me how to do that? If you have a link about it, it would be even better But thanks Link to comment https://forums.phpfreaks.com/topic/249481-parse-error/#findComment-1280916 Share on other sites More sharing options...
ManiacDan Posted October 20, 2011 Share Posted October 20, 2011 Things are so much easier when you learn to help yourself. I searched for "escape PHP" on google and this was just begging to be read. Of course, you're absolutely doing this 100% wrong. Don't ever echo entire control structures. What you have here will echo the literal PHP code, not actually do any of it. Link to comment https://forums.phpfreaks.com/topic/249481-parse-error/#findComment-1280921 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.