You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 57 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - How To Insert JavaScript Into Modules/Blocks [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
EarthAngel
Sergeant
Sergeant


Joined: Sep 05, 2004
Posts: 87

Location: Denmark

PostPosted: Sat Oct 16, 2004 11:39 am Reply with quoteBack to top

Thanks, Mesum, but I'm really sorry to be a total noob.. but which file do I copy/paste the code into? Very Happy

And at the very bottom of that file, I'm assuming?
Find all posts by EarthAngelView user's profileSend private message
Mesum
Support Staff
Support Staff


Joined: Mar 11, 2003
Posts: 842

Location: Chicago

PostPosted: Sat Oct 16, 2004 11:41 am Reply with quoteBack to top

Sorry, I just came back to edit my post to tell you which file you edit and I saw your post. It's footer.php, located in your PHP-Nuke's root directory/folder.

_________________
Only FREE Dating site for Desis.
Find all posts by MesumView user's profileSend private messageVisit poster's websiteAIM AddressYahoo MessengerMSN Messenger
EarthAngel
Sergeant
Sergeant


Joined: Sep 05, 2004
Posts: 87

Location: Denmark

PostPosted: Sat Oct 16, 2004 11:54 am Reply with quoteBack to top

Thanks again, but its not showing up at all Sad

Here's the content of my whole footer.php:

Code:
<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System                         */
/* ============================================                         */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

if (eregi("footer.php",$_SERVER['PHP_SELF'])) {
    Header("Location: index.php");
    die();
}

$footer = 1;

function footmsg() {
    global $foot1, $foot2, $foot3, $copyright, $total_time, $start_time;
    $mtime = microtime();
    $mtime = explode(" ",$mtime);
    $mtime = $mtime[1] + $mtime[0];
    $end_time = $mtime;
    $total_time = ($end_time - $start_time);
    $total_time = ""._PAGEGENERATION." ".substr($total_time,0,5)." "._SECONDS."";
    echo "<font class=\"footmsg\">\n";
    if ($foot1 != "") {
   echo "$foot1<br>\n";
    }
    if ($foot2 != "") {
   echo "$foot2<br>\n";
    }
    if ($foot3 != "") {
   echo "$foot3<br>\n";
    }
    // DO NOT REMOVE THE FOLLOWING COPYRIGHT LINE. YOU'RE NOT ALLOWED TO REMOVE NOR EDIT THIS.
    // IF YOU REALLY NEED TO REMOVE IT AND HAVE MY WRITTEN AUTHORIZATION CHECK: http://phpnuke.org/modules.php?name=Commercial_License
    // PLAY FAIR AND SUPPORT THE DEVELOPMENT, PLEASE!
    echo "$copyright<br>$total_time<br>\n</font>\n";
}

function foot() {
    global $prefix, $user_prefix, $db, $index, $user, $cookie, $storynum, $user, $cookie, $Default_Theme, $foot1, $foot2, $foot3, $foot4, $home, $module, $name;
    if ($home == 1) {
   blocks(Down);
    }
    if ($module == 1 AND file_exists("modules/$name/copyright.php")) {
   $cpname = ereg_replace("_", " ", $name);
   echo "<div align=\"right\"><a href=\"javascript:openwindow()\">$cpname &copy;</a></div>";
    }
    themefooter();
    echo "</body>\n"
   ."</html>";
    die();
}

foot();
?>
<!-- Chart Basis HTML kode start v003 -->
<script language="javascript" type="text/javascript">
<!--
  document.write('<a href="http://www.chart.dk/ref.asp?ct=v003&id=106998" target="_blank">');
  var myref; myref=document.referrer; if(top.document.referrer!=null) myref=top.document.referrer;
  document.write('<img src="http://cluster.chart.dk/chart.asp?id=106998&style=7&secID=' + Math.random()*10000000 + '&ref=' + escape(myref) + '" border="0" alt="Chart.dk"><');
  document.write('/a>');
//-->
</script>
<noscript>
  <a href="http://www.chart.dk/ref.asp?ct=v003&amp;id=106998" target="_blank"><img src="http://cluster.chart.dk/chart.asp?id=106998&amp;style=7&amp;secID=1" border="0" alt="Chart.dk"></a>
</noscript>
<!-- Chart Basis HTML kode slut v003 -->
<?

?>


I'm really sorry to be such a pain .. but I copied and pasted everything you said... Sad
Find all posts by EarthAngelView user's profileSend private message
Mesum
Support Staff
Support Staff


Joined: Mar 11, 2003
Posts: 842

Location: Chicago

PostPosted: Sat Oct 16, 2004 12:00 pm Reply with quoteBack to top

Try this:

Code:

<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System                         */
/* ============================================                         */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

if (eregi("footer.php", $_SERVER['SCRIPT_NAME'])) {
    Header("Location: index.php");
    die();
}

$footer = 1;

function footmsg() {
    global $foot1, $foot2, $foot3, $copyright, $total_time, $start_time;
    $mtime = microtime();
    $mtime = explode(" ",$mtime);
    $mtime = $mtime[1] + $mtime[0];
    $end_time = $mtime;
    $total_time = ($end_time - $start_time);
    $total_time = ""._PAGEGENERATION." ".substr($total_time,0,5)." "._SECONDS."";
    echo "<font class=\"footmsg\">\n";
    if ($foot1 != "") {
   echo "$foot1<br>\n";
    }
    if ($foot2 != "") {
   echo "$foot2<br>\n";
    }
    if ($foot3 != "") {
   echo "$foot3<br>\n";
    }
    // DO NOT REMOVE THE FOLLOWING COPYRIGHT LINE. YOU'RE NOT ALLOWED TO REMOVE NOR EDIT THIS.
    // IF YOU REALLY NEED TO REMOVE IT AND HAVE MY WRITTEN AUTHORIZATION CHECK: http://phpnuke.org/modules.php?name=Commercial_License
    // PLAY FAIR AND SUPPORT THE DEVELOPMENT, PLEASE!
    echo "$copyright<br>$total_time<br>\n</font>\n";
}

function foot() {
    global $prefix, $user_prefix, $db, $index, $user, $cookie, $storynum, $user, $cookie, $Default_Theme, $foot1, $foot2, $foot3, $foot4, $home, $module, $name;
    if ($home == 1) {
   blocks(Down);
    }
    if ($module == 1 AND file_exists("modules/$name/copyright.php")) {
   $cpname = ereg_replace("_", " ", $name);
   echo "<div align=\"right\"><a href=\"javascript:openwindow()\">$cpname &copy;</a></div>";
    }
    themefooter();
   ?>
<!-- Chart Basis HTML kode start v003 -->
<script language="javascript" type="text/javascript">
<!--
  document.write('<a href="http://www.chart.dk/ref.asp?ct=v003&id=106994" target="_blank">');
  var myref; myref=document.referrer; if(top.document.referrer!=null) myref=top.document.referrer;
  document.write('<img src="http://cluster.chart.dk/chart.asp?id=106994&style=7&secID=' + Math.random()*10000000 + '&ref=' + escape(myref) + '" border="0" alt="Chart.dk"><');
  document.write('/a>');
//-->
</script>
<noscript>
  <a href="http://www.chart.dk/ref.asp?ct=v003&amp;id=106994" target="_blank"><img src="http://cluster.chart.dk/chart.asp?id=106994&amp;style=7&amp;secID=1" border="0" alt="Chart.dk"></a>
</noscript>
<!-- Chart Basis HTML kode slut v003 -->
<?

    echo "</body>\n"
   ."</html>";
    die();
}

foot();

?>

If this one doesn't work then we'll try another way to get it done.

_________________
Only FREE Dating site for Desis.
Find all posts by MesumView user's profileSend private messageVisit poster's websiteAIM AddressYahoo MessengerMSN Messenger
EarthAngel
Sergeant
Sergeant


Joined: Sep 05, 2004
Posts: 87

Location: Denmark

PostPosted: Sat Oct 16, 2004 12:06 pm Reply with quoteBack to top

Ah Mesum, you're a star!! It works absolutely wonderfully now.. I owe you <3
Find all posts by EarthAngelView user's profileSend private message
GnBanditoCI5
Corporal
Corporal


Joined: Sep 15, 2004
Posts: 50


PostPosted: Wed Sep 28, 2005 7:49 pm Reply with quoteBack to top

Hey guys,

Recently I set up an account with a web host that offers free corporate type sites, the only requirement is that you include one of their advertisements on every page of your site.( either a banner, or advanced text link).

Being that i am putting up a nuke site, I am considering creating a custom block with the advanced text link in it, to place on the top left side above the navigation, in essence meeting their requirement to have the link on every page of the site etc.

However, the problem is, is that the code they supply for you to use is Javascript, and we all know that nuke and javascript don't play well together.

So anyway, what i need to do is create a custom block file I can then use to activate a new block that has the link.

I have tried creating the block according to peoples suggestions, but when I activate it, it offsets my entire site and I can no longer access anything including the admin area until I delete the block via ftp.

So anyway...here is the code that i need in the custom block....

Code:
<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script>
<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 ("&amp;what=zone:3&amp;target=_blank");
   document.write ("&amp;exclude=" + document.phpAds_used);
   if (document.referrer)
      document.write ("&amp;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&amp;n=a915c788' border='0' alt=''></a></noscript>


As I said, I have tried making a block file looking like this....

Code:
<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System                         */
/* ============================================                         */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

if (eregi("block-Ad.php",$_SERVER[PHP_SELF])) {
    Header("Location: ../index.php");
    die();
}

<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script>
<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 ("&amp;what=zone:3&amp;target=_blank");
   document.write ("&amp;exclude=" + document.phpAds_used);
   if (document.referrer)
      document.write ("&amp;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&amp;n=a915c788' border='0' alt=''></a></noscript>
?>


and named the file "block-Ad.php" , went into the admin panel and created a new block referencing this file.

But as I said, it does not work properly....

So...I throw myself upon the mercy of the nukecop gods in asking for help correcting the code for this block.

Thank you very much guys...I look forward to a reply...

_________________
Peace 4 now...4 NOW !
Gn.ßändï†ö¤CÏ5¤
Clan International Online
Image
Find all posts by GnBanditoCI5View user's profileSend private message
Evaders99
Site Admin
Site Admin


Joined: Aug 17, 2003
Posts: 12372


PostPosted: Wed Sep 28, 2005 8:46 pm Reply with quoteBack to top

Code that you want to display must go into the $content variable

Example:
Code:

$content = "<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script>";
$content .= "<script language='JavaScript' type='text/javascript'>";
...

Continue adding lines. Note that all quote marks you want to return to the browser must be slash'd (use \" instead of ")

_________________
Helping those that help themselves
Read FIRST or DIE!

"Fighting is terrible, but not as terrible as losing the will to fight."
Star Wars Rebellion Network - Need Help? Evaders Squadron Coding
Find all posts by Evaders99View user's profileSend private messageVisit poster's websiteAIM Address
GnBanditoCI5
Corporal
Corporal


Joined: Sep 15, 2004
Posts: 50


PostPosted: Wed Sep 28, 2005 9:31 pm Reply with quoteBack to top

Evaders99 wrote:
Code that you want to display must go into the $content variable

Example:
Code:

$content = "<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script>";
$content .= "<script language='JavaScript' type='text/javascript'>";
...

Continue adding lines. Note that all quote marks you want to return to the browser must be slash'd (use \" instead of ")


First of all, whats up Evaders, long time no tech support....

Secondly, Dont mean to be a total noob brother, but could you possibly format the code for me inbetween CODE tags....

I will post the code that is needed to be in the block, and then post an example block file code again for you to copy and paste easily....

Thank you brother....

This is the code they require....

Code:
<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script>
<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 ("&amp;what=zone:3&amp;target=_blank");
   document.write ("&amp;exclude=" + document.phpAds_used);
   if (document.referrer)
      document.write ("&amp;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&amp;n=a915c788' border='0' alt=''></a></noscript>


And this is the code I made using a default block document....

Code:
<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System                         */
/* ============================================                         */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

if (eregi("block-Ad.php",$_SERVER[PHP_SELF])) {
    Header("Location: ../index.php");
    die();
}

<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script>
<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 ("&amp;what=zone:3&amp;target=_blank");
   document.write ("&amp;exclude=" + document.phpAds_used);
   if (document.referrer)
      document.write ("&amp;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&amp;n=a915c788' border='0' alt=''></a></noscript>
?>


Sorry for asking you to do this for me, its just that i am a little lost as to what you mean with your suggestion...

Again thank you Evaders..

_________________
Peace 4 now...4 NOW !
Gn.ßändï†ö¤CÏ5¤
Clan International Online
Image
Find all posts by GnBanditoCI5View user's profileSend private message
GnBanditoCI5
Corporal
Corporal


Joined: Sep 15, 2004
Posts: 50


PostPosted: Sat Oct 01, 2005 1:28 am Reply with quoteBack to top

bump

_________________
Peace 4 now...4 NOW !
Gn.ßändï†ö¤CÏ5¤
Clan International Online
Image
Find all posts by GnBanditoCI5View user's profileSend private message
Evaders99
Site Admin
Site Admin


Joined: Aug 17, 2003
Posts: 12372


PostPosted: Sat Oct 01, 2005 4:36 pm Reply with quoteBack to top

I don't do full code for people. It simple matter of placing your text within the $content variable

Code:

$content = "YOURTEXT";


(Any quotes you want displayed must be slashed - " to \")

_________________
Helping those that help themselves
Read FIRST or DIE!

"Fighting is terrible, but not as terrible as losing the will to fight."
Star Wars Rebellion Network - Need Help? Evaders Squadron Coding
Find all posts by Evaders99View user's profileSend private messageVisit poster's websiteAIM Address
GnBanditoCI5
Corporal
Corporal


Joined: Sep 15, 2004
Posts: 50


PostPosted: Mon Oct 10, 2005 7:35 pm Reply with quoteBack to top

I though phpnuke REQUIRED you when creating a custom block file to incluse this code first....

Code:
<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System                         */
/* ============================================                         */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

if (eregi("block-Ad.php",$_SERVER[PHP_SELF])) {
    Header("Location: ../index.php");
    die();
}


Which does NOT have any $content variable area to place the code needed in my case...which is...

Code:
<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script>

<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 ("&amp;what=zone:3&amp;target=_blank");
   document.write ("&amp;exclude=" + document.phpAds_used);
   if (document.referrer)
      document.write ("&amp;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&amp;n=a915c788' border='0' alt=''></a></noscript>


So this is my reason for asking you to form an example of what is needed in my case, not lack of willingness to do it on my part, but rather my confusion as to your suggestion.

Sorry guys, just at my wits end with this peticular file usage...

Thanks again for any and all help....

_________________
Peace 4 now...4 NOW !
Gn.ßändï†ö¤CÏ5¤
Clan International Online
Image
Find all posts by GnBanditoCI5View user's profileSend private message
GnBanditoCI5
Corporal
Corporal


Joined: Sep 15, 2004
Posts: 50


PostPosted: Mon Oct 10, 2005 7:38 pm Reply with quoteBack to top

I will copy and paste an explanation of what I am trying to do that I initially posted in the webhosts forums...this should adequatly explain what I need....

As per the requirements of having either the banner or the smart link code placed on EVERY page of our sites, and in a location easily seeeable by visitors...I would like to create a custom SMART LINK code BLOCK for my nuke site, that I can then activate and position the block on the top left corner of my site, just above the navigation, which would in essence make that block visible no matter where the user navigated to on the site.

However nuke and javascript dont play well together...so what you you NEED to do is create a custom BLOCK file named something like... "block-Ad.php" , in the custom block file...include the advertisement code you wish used... and place it in your BLOCKS directory, and then go into your nuke admin panel and activate it, then finally position it where you wish.



However, I have tried MANY and various different uses of the smart link code in a custom block file....and when I activate it in the nuke admin panel...it offsets the entire site to the right, and in essence make the site un-navigable because its forced everything off screen. I then need to MANUALLY log into FTP and delete the file to correct the issue....simply deactivating the block is then no longer an option, as the site being offset makes the ADMIN panel no accessable.



Here is an example of my most recent attempt at creating the custom block file that includes the code you require to show the text link....





Code:
 

   

<?php

 

/************************************************************************/

 

/* PHP-NUKE: Web Portal System */

 

/* =========================== */

 

/* */

 

/* Copyright (c) 2005 by Francisco Burzi */

 

/* http://phpnuke.org */

 

/* */

 

/* This program is free software. You can redistribute it and/or modify */

 

/* it under the terms of the GNU General Public License as published by */

 

/* the Free Software Foundation; either version 2 of the License. */

 

/************************************************************************/

 

if (eregi("block-Ad.php",$_SERVER['PHP_SELF'])) {

Header("Location: index.php");

die();

    }

 

<script language='JavaScript' type='text/javascript' src='http://x10hosting.com/advert/adx.js'></script>

<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 ("&amp;what=zone:3&amp;target=_blank");

document.write ("&amp;exclude=" + document.phpAds_used);

if (document.referrer)

     document.write ("&amp;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&amp;n=a915c788' border='0' alt=''></a></noscript>

 

?>





I then take this file and upload it to my BLOCKS directory....and as I said...activate it in my nuke admin panel....but again...something is wrong and it will not work correctly...

_________________
Peace 4 now...4 NOW !
Gn.ßändï†ö¤CÏ5¤
Clan International Online
Image
Find all posts by GnBanditoCI5View user's profileSend private message
Evaders99
Site Admin
Site Admin


Joined: Aug 17, 2003
Posts: 12372


PostPosted: Mon Oct 10, 2005 9:30 pm Reply with quoteBack to top

Yes, it must include the copyright and the security code. And then any text you want outputted must be in the $content varible.

_________________
Helping those that help themselves
Read FIRST or DIE!

"Fighting is terrible, but not as terrible as losing the will to fight."
Star Wars Rebellion Network - Need Help? Evaders Squadron Coding
Find all posts by Evaders99View user's profileSend private messageVisit poster's websiteAIM Address
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.525 Seconds - 275 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::