How can i add this into my php code?

I am using a tool in php that converts mediawiki content into html. I want to edit the tool so when i run the tool it will add this html code

[code]


&copy 1993-2014 Company XX.
| Visit Us: www.website.com
| Send Feedback: [email protected]
| See:
Terms of Use
Privacy Policy
[/code]

I am a novice with php and it would be a BIG help if i could have this written out in php so i can just paste it into my tool!
Cheers!

Here you go:

[code]

Append Footer

Hello

[/code]

This will output:

[code]Hello

© 1993-2014 Company XX.| Visit Us: www.website.com| Send Feedback: [email protected]| See: Terms of UsePrivacy Policy[/code]

What I have done is created a function containing your footer code.
Then when the document has loaded, Using jQuery, I append your footer to the div called ‘hello’. (change this to suit your needs)

Hope that helps,
Red :wink:

Thank you so much! That works! The only problem is when i use that, it seems to include “Send Feedback” as part of the www.website.com link. and also it includes “See:” as part of the [email protected]. How can i fix that?

Sponsor our Newsletter | Privacy Policy | Terms of Service