TeamRocket
Guest
- 0
- Posts
I need some link to me buttons - plz?
I know, the last time I searched for one to put on my forums, there were so many to choose from! XDJedi_Amara said:LOL, I'll take a look. You want to know how many buttons I made myself? https://pata.jessem.elixant.com/link.htm and https://pokepen.jessem.elixant.com/linkus.htm Must be hundreds there XD
<?php
/* Link to Us Script
Written by Kyle Thomas Korleski for Jedi_Armada's Overly obsessive button habit.
This makes up the code for each button O.O */
if ($link_id = null) {
// Replace with your own favorite link id
$link_id = "";
print '<html>';
print '<head>';
print '<title>Link to Us Code</title>';
print '</head>';
print '<body>';
print '<h1>Link to Us</h1>';
print '<a href="https://pata.jessem.elixant.com/">';
print '<img src="https://pata.jessem.elixant.com/images/' . $link_id;
print '</a><br />';
print '<textarea>';
print '<a href="https://pata.jessem.elixant.com/">';
print '<img src="https://pata.jessem.elixant.com/images/' . $link_id;
print '</a>';
print '</textarea>';
print '<center><font size="1" face="Verdana">Built by Kyle Korleski - <a href="https://www.stopthegrandparkway.com">Stop the Grand Parkway</a></font></center>';
} else {
// Make page
print '<html>';
print '<head>';
print '<title>Link to Us Code</title>';
print '</head>';
print '<body>';
print '<h1>Link to Us</h1>';
print '<a href="https://pata.jessem.elixant.com/">';
print '<img src="https://pata.jessem.elixant.com/images/' . $link_id;
print '</a><br />';
print '<textarea>';
print '<a href="https://pata.jessem.elixant.com/">';
print '<img src="https://pata.jessem.elixant.com/images/' . $link_id;
print '</a>';
print '</textarea>';
print '<center><font size="1" face="Verdana">Built by Kyle Korleski - <a href="https://www.stopthegrandparkway.com">Stop the Grand Parkway</a></font></center>';
}
?>