https://www.icyphoenix.com/viewtopic.php?f=35&t=9188&p=59462#p59462 ----------------------------------- mort Wed 22 Jan, 2014 03:08 Re: PHP5.5 And Apache2.4.7 Upgrade Problems ----------------------------------- You are trying to use "echo" in a php file that is NOT a php template. In other words the .php file is running in the background and parsing the information to the .tpl file. You would no doubt have to define what you are trying to echo and add the DEFINED CONSTANT(s) or Defined $variable(s) you use to the .tpl file. This is an example of how "echo" is used when combined in common with the php script when the template is part of the same page. [spoiler] [code linenumbers=false]echo ' '.$lang['post_by'].': '.$author.' '.$title.'
'.$body.' '.$lang['post_on'].': '.$entry_date.' '; echo ' '.SCRSB.' '.IMG_THB.'

'.$lang['pages'].': '; for($i = 1; $i <= $totalpages; $i++){ if($show == $i){$PageAt = 'page-at';}else{$PageAt = 'pagination';} echo ''.$i.''; } echo '

'; };[/code][/spoiler] And [b]PLEASE[/b] use the [b]SPOILER[/b] when you post heaps of code.