Ad Code Help

Fire Wolf

New Member
Messages
480
Reaction score
0
Points
0
Well, the x10hosting.com/ads.php page doesnt work so could someone tell me how to make a simple index page in which I can place the Advanced ad code (Also tell me how) and the text Forums Under Construction. Please help, much appreciated.
 

Phil

Retired Staff
Messages
7,344
Reaction score
0
Points
36
In some of the staff members sigs, theres links to the ad code. (i.e jacob). I have not added it to mine yet hehe.
 

Jacob

New Member
Messages
1,146
Reaction score
0
Points
0
The link in my signature links to a forum post with all the appropriate ad codes on it.
 

Fire Wolf

New Member
Messages
480
Reaction score
0
Points
0
So should I just paste this code <?php include('http://staff.x10hosting.com/adCode.php?ad=advanced'); ?> at the page?

Ok, someone please tell me how to add the index page :)

Edit: Never mind, all done. Thanks a lot.
 
Last edited:

Vyriix

New Member
Messages
126
Reaction score
0
Points
0
if you are trying to put ads into your forum, you have to edit your theme and paste the php ads code.
 

James

Banned
Messages
1,062
Reaction score
0
Points
0
http://staff.x10hosting.com/adCode.php?ad=advanced
http://staff.x10hosting.com/adCode.php?ad=corporate

Get the sorce of them

Corp:
Code:
 <script language='JavaScript' type='text/javascript'>
<!--
   if (!document.phpAds_used) document.phpAds_used = ',';
   phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
   
   document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
   document.write ("http://x10hosting.com/advert/adjs.php?n=" + phpAds_random);
   document.write ("&what=zone:1&target=_blank");
   document.write ("&exclude=" + document.phpAds_used);
   if (document.referrer)
      document.write ("&referer=" + escape(document.referrer));
   document.write ("'><" + "/script>");
//-->

</script><noscript><a href='http://x10hosting.com/advert/adclick.php?n=a7fb3e9d' target='_blank'><img src='http://x10hosting.com/advert/adview.php?what=zone:1&amp;n=a7fb3e9d' border='0' alt=''></a></noscript>


Advanced:
Code:
 <script language='JavaScript' type='text/javascript'>
<!--
   if (!document.phpAds_used) document.phpAds_used = ',';
   phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
   
   document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
   document.write ("http://x10hosting.com/advert/adjs.php?n=" + phpAds_random);
   document.write ("&what=zone:3&target=_blank");
   document.write ("&exclude=" + document.phpAds_used);
   if (document.referrer)
      document.write ("&referer=" + escape(document.referrer));
   document.write ("'><" + "/script>");
//-->

</script><noscript><a href='http://x10hosting.com/advert/adclick.php?n=a915c788' target='_blank'><img src='http://x10hosting.com/advert/adview.php?what=zone:3&n=a915c788' border='0' alt='' /></a></noscript>

Hope this helps
 
Top