old php code from wpQuiz

I just updated Xampp and of course got the new php and mysql updates. Unfortunately some of my old is old, I can’t find anything on this anywhere else. This was code from wpQuiz.

<?=getlang("questionselectaset",1)?>

My understanding is that “<?” is no longer viable, so I figured “<?php=getlang” would work, it doesn’t. Haven’t found any information on getlang – unless it is an internal function. yes it is, so this is trying unsuccesfully to call a function.

Perhaps I will research that. Any ideas on how to make this work.

This should work:
[php]<?php echo getlang("questionselectaset",1)?>[/php]

Or change this setting in your php.ini
short_open_tag

Sponsor our Newsletter | Privacy Policy | Terms of Service