Hey, basically I want to include images and links within some php code but that isn't working so I'm resorting to putting them into another file and trying to call an include but keep getting errors!
Basically, this is the code I have just now:
$copyRightBody = "<div class='txtCopyright'>", include('partners.php' "All Rights Reserved </div>\r\n");
I've tried it like this: $copyRightBody = "<div class='txtCopyright'>All Rights Reserved</div>\r\n"; include('partners.php');
But then it adds the included file to the top of the page when the copyright text is the very bottom?
Basically, I need to know how to either add links and images into this part or how to get an include file to go the same place as the copyright text.
Thanks in advance!
The 1 I have set just now (the top code), i get the error:
Parse error: syntax error, unexpected T_INCLUDE
Basically, this is the code I have just now:
$copyRightBody = "<div class='txtCopyright'>", include('partners.php' "All Rights Reserved </div>\r\n");
I've tried it like this: $copyRightBody = "<div class='txtCopyright'>All Rights Reserved</div>\r\n"; include('partners.php');
But then it adds the included file to the top of the page when the copyright text is the very bottom?
Basically, I need to know how to either add links and images into this part or how to get an include file to go the same place as the copyright text.
Thanks in advance!
The 1 I have set just now (the top code), i get the error:
Parse error: syntax error, unexpected T_INCLUDE