Go Back   vb.org Archive > vBulletin Article Depository > Read An Article > vBulletin 3 Articles
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
How to create your own vBulletin-powered page! (uses vB templates)
Gary King's Avatar
Gary King
Join Date: Jan 2002
Posts: 2,046

 

Show Printable Version Email this Page Subscription
Gary King Gary King is offline 03-03-2004, 10:00 PM

Want to create your very own vBulletin powered page which includes the header, footer, and the user permissions system as well?

Well now you can

Want to know how it will look? Take a look at the attached screenshot below!

Now includes the Who's Online modification!
Also, instructions included on how to create your own pages that are integrated with current vBulletin files!

I'm going to give you a generic page but you can easily modify the contents of the page by changing the template

So here we go

Instructions:

Create a new file, whatever you want to call it (let's say test.php).
Open up test.php and add the following (replace TEST with whatever template you want to show):
PHP Code:
<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS'1);
define('THIS_SCRIPT''test'); // change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(

);

// get special data templates from the datastore
$specialtemplates = array(
    
);

// pre-cache templates used by all actions
$globaltemplates = array(
    
'TEST',
);

// pre-cache templates used by specific actions
$actiontemplates = array(

);

// ######################### REQUIRE BACK-END ############################
require_once('./global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################

$navbits = array();
$navbits[$parent] = 'Test Page';

$navbits construct_navbits($navbits);
eval(
'$navbar = "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('TEST') . '");');

?>
Be sure to change 'TEST' to the actual template name, and change 'test' to the filename. Also, change 'Test Page' to whatever you want to show in the navbar, such as 'Viewing Member Profile' (just an example).

Now create the template, called TEST with the following content:
HTML Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
</head>
<body>
$header

$navbar

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
    <td class="tcat">Title</td>
</tr>
<tr>
    <td class="alt1">Text</td>
</tr>
</table>

$footer
</body>
</html>
All done
Now check it out by going to test.php

Who's Online Modification

Now if you want to show who is browsing this new page of yours, just open up includes/functions_online.php and find:
PHP Code:
    case 'bugs.php':
        
$userinfo['activity'] = 'bugs';
        break; 
Below, add:
PHP Code:
    case 'test.php':
        
$userinfo['activity'] = 'test';
        break; 
(Be sure to change the values to your own!)

Then find:
PHP Code:
        case 'modcplogin':
            
$userinfo['action'] = $vbphrase['moderator_control_panel_login'];
            break; 
Below add:
PHP Code:
        case 'test':
            
$userinfo['action'] = 'Viewing Test Page';
            break; 
All done!

----------------------------------

Also if you want to create your own pages 'within' current vBulletin files, do the following:

Open the file you want, and then right before the final ?> in the source code, add the following:

PHP Code:
if ($_REQUEST['do'] == 'xxx')
{
    eval(
'print_output("' fetch_template('TEMPLATE_XXX') . '");');

Replace 'xxx' with whatever you want ?do= in the query string to be (for example, replace 'xxx' with 'showprofile' so then someone would type in example.php?do=showprofile to view this template.) Then of course, change TEMPLATE_XXX to your template name, it's that simple!


edit by Lynne: If running 3.8.4 or above, see this post to take care of the PHP 5.3.0-related problems - https://vborg.vbsupport.ru/showpost....postcount=1171
Attached Images
File Type: jpg template_test.jpg (62.5 KB, 0 views)
Reply With Quote
  #362  
Old 09-20-2005, 11:31 PM
unknowngiver unknowngiver is offline
 
Join Date: Jul 2005
Posts: 121
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OKAY
this is not working


So i add it like this


Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
</head>
<body>
$header

$navbar

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
	<td class="tcat">AF banner Maker</td>
</tr>
<tr>
	<td class="alt1"><?php
include("header.inc");

?>
<script type="text/javascript">
<!--

function showimage() {
if (!document.images)
return
document.images.banner.src=
'banner/' + document.fastbanner.select_banner.options[document.fastbanner.select_banner.selectedIndex].value
}

//-->
</script>
<script type="text/javascript">
<!-- Begin
function showColor(val) {
document.fastbanner.titlecolor.value = val;
}
function showColor2(val2) {
document.fastbanner.tagcolor.value = val2;
}
//  End -->
</script>

<div align="center">
<TABLE summary="table" cellspacing="0" cellpadding="0" width="100%">
	<form action="banner.php" name="fastbanner" method="post">
      <TR>
        <TD align="center">
<table cellspacing="0" cellpadding="0" width="100%">

<tr>
       <td width="20%" aign="top">
	   		<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
                  <TR>
                    <TD class="border">
                      <TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
                        <TR>
                          <TD colspan="1" class="header">
                            Instructions
                          </TD>
                        </TR>
                        <TR>
                          <TD class="main" colspan="4">
?&nbsp;Select the banner to edit.<BR>
<BR>
?&nbsp;Enter Title and Tag Line as this will be the text that will be on your banner.<BR>
<BR>
?&nbsp;Choose your Title and Tag Line colors.<BR>
<BR>
?&nbsp;Choose your Title and Tag Line coordinates. You can click the banner where you want the text to see the coordinates to use.<BR>
<BR>
?&nbsp;Submit the information and your banner will be created.
                          </TD>
                        </TR>
                      </TABLE>
                    </TD>
                  </TR>
                </TABLE>
	   </td>
	   <td width="5%">&nbsp;</td>
       <td width="75%">
	   
	   			  <TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
                  <TR>
                    <TD class="border">
                      <TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
                        <TR>
                          <TD colspan="5" class="header">
                            Select Your Banner.
                          </TD>
                        </TR>
                        <TR>
                          <TD class="main" colspan="5" align="center">
<select name="select_banner" onChange="showimage()">
<?php
$open = opendir("banner");
while ($files = readdir($open)) {
	$filename = $files;
	if ($filename == "."){
print "\n";
}
elseif ($filename == ".."){
print "\n";
}
else {
print "<option value=\"$filename\">$filename</option>\n";
}
} 
?>
</select><br>
    <table cellspacing="0" cellpadding="0" width="484" summary="Banner Table">
      <tr>
        <td rowspan="2"><img src="Yscala1.gif" width="16" height="79" border="0" alt=" " /></td>
        <td><img src="Xscala1.gif" width="468" height="15" border="0" alt=" " /></td>
      </tr>
      <tr>
        <td valign="top"><img ismap onclick="alert('Coordinates:\n\nX POS: '+self.event.offsetX+'\nY POS: '+self.event.offsetY);" name="banner" src="banner/ban01.png" width="468" height="60" /></td>
      </tr>
    </table>
                          </TD>
                        </TR>
                      </TABLE>
                    </TD>
                  </TR>
                </TABLE><br>
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
                  <TR>
                    <TD class="border">
                      <TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
                        <TR>
                          <TD colspan="1" class="header">
                            Pick your title text.
                          </TD>
                        </TR>
                        <TR>
                          <TD class="main" colspan="4">
                            <table cellspacing="0" cellpadding="0" width="100%">

<tr>
<td width="100"><input name="titletext" value="YourSite" size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="titlecolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>
<map name="colmap">
<area shape="rect" coords="1,1,7,10" href="javascript:showColor('#00FF00')">
<area shape="rect" coords="9,1,15,10" href="javascript:showColor('#00FF33')">
<area shape="rect" coords="17,1,23,10" href="javascript:showColor('#00FF66')">
<area shape="rect" coords="25,1,31,10" href="javascript:showColor('#00FF99')">
<area shape="rect" coords="33,1,39,10" href="javascript:showColor('#00FFCC')">
<area shape="rect" coords="41,1,47,10" href="javascript:showColor('#00FFFF')">
<area shape="rect" coords="49,1,55,10" href="javascript:showColor('#33FF00')">
<area shape="rect" coords="57,1,63,10" href="javascript:showColor('#33FF33')">
<area shape="rect" coords="65,1,71,10" href="javascript:showColor('#33FF66')">
<area shape="rect" coords="73,1,79,10" href="javascript:showColor('#33FF99')">
<area shape="rect" coords="81,1,87,10" href="javascript:showColor('#33FFCC')">
<area shape="rect" coords="89,1,95,10" href="javascript:showColor('#33FFFF')">
<area shape="rect" coords="97,1,103,10" href="javascript:showColor('#66FF00')">
<area shape="rect" coords="105,1,111,10" href="javascript:showColor('#66FF33')">
<area shape="rect" coords="113,1,119,10" href="javascript:showColor('#66FF66')">
<area shape="rect" coords="121,1,127,10" href="javascript:showColor('#66FF99')">
<area shape="rect" coords="129,1,135,10" href="javascript:showColor('#66FFCC')">
<area shape="rect" coords="137,1,143,10" href="javascript:showColor('#66FFFF')">
<area shape="rect" coords="145,1,151,10" href="javascript:showColor('#99FF00')">
<area shape="rect" coords="153,1,159,10" href="javascript:showColor('#99FF33')">
<area shape="rect" coords="161,1,167,10" href="javascript:showColor('#99FF66')">
<area shape="rect" coords="169,1,175,10" href="javascript:showColor('#99FF99')">
<area shape="rect" coords="177,1,183,10" href="javascript:showColor('#99FFCC')">
<area shape="rect" coords="185,1,191,10" href="javascript:showColor('#99FFFF')">
<area shape="rect" coords="193,1,199,10" href="javascript:showColor('#CCFF00')">
<area shape="rect" coords="201,1,207,10" href="javascript:showColor('#CCFF33')">
<area shape="rect" coords="209,1,215,10" href="javascript:showColor('#CCFF66')">
<area shape="rect" coords="217,1,223,10" href="javascript:showColor('#CCFF99')">
<area shape="rect" coords="225,1,231,10" href="javascript:showColor('#CCFFCC')">
<area shape="rect" coords="233,1,239,10" href="javascript:showColor('#CCFFFF')">
<area shape="rect" coords="241,1,247,10" href="javascript:showColor('#FFFF00')">
<area shape="rect" coords="249,1,255,10" href="javascript:showColor('#FFFF33')">
<area shape="rect" coords="257,1,263,10" href="javascript:showColor('#FFFF66')">
<area shape="rect" coords="265,1,271,10" href="javascript:showColor('#FFFF99')">
<area shape="rect" coords="273,1,279,10" href="javascript:showColor('#FFFFCC')">
<area shape="rect" coords="281,1,287,10" href="javascript:showColor('#FFFFFF')">
<area shape="rect" coords="1,12,7,21" href="javascript:showColor('#00CC00')">
<area shape="rect" coords="9,12,15,21" href="javascript:showColor('#00CC33')">
<area shape="rect" coords="17,12,23,21" href="javascript:showColor('#00CC66')">
<area shape="rect" coords="25,12,31,21" href="javascript:showColor('#00CC99')">
<area shape="rect" coords="33,12,39,21" href="javascript:showColor('#00CCCC')">
<area shape="rect" coords="41,12,47,21" href="javascript:showColor('#00CCFF')">
<area shape="rect" coords="49,12,55,21" href="javascript:showColor('#33CC00')">
<area shape="rect" coords="57,12,63,21" href="javascript:showColor('#33CC33')">
<area shape="rect" coords="65,12,71,21" href="javascript:showColor('#33CC66')">
<area shape="rect" coords="73,12,79,21" href="javascript:showColor('#33CC99')">
<area shape="rect" coords="81,12,87,21" href="javascript:showColor('#33CCCC')">
<area shape="rect" coords="89,12,95,21" href="javascript:showColor('#33CCFF')">
<area shape="rect" coords="97,12,103,21" href="javascript:showColor('#66CC00')">
<area shape="rect" coords="105,12,111,21" href="javascript:showColor('#66CC33')">
<area shape="rect" coords="113,12,119,21" href="javascript:showColor('#66CC66')">
<area shape="rect" coords="121,12,127,21" href="javascript:showColor('#66CC99')">
<area shape="rect" coords="129,12,135,21" href="javascript:showColor('#66CCCC')">
<area shape="rect" coords="137,12,143,21" href="javascript:showColor('#66CCFF')">
<area shape="rect" coords="145,12,151,21" href="javascript:showColor('#99CC00')">
<area shape="rect" coords="153,12,159,21" href="javascript:showColor('#99CC33')">
<area shape="rect" coords="161,12,167,21" href="javascript:showColor('#99CC66')">
<area shape="rect" coords="169,12,175,21" href="javascript:showColor('#99CC99')">
<area shape="rect" coords="177,12,183,21" href="javascript:showColor('#99CCCC')">
<area shape="rect" coords="185,12,191,21" href="javascript:showColor('#99CCFF')">
<area shape="rect" coords="193,12,199,21" href="javascript:showColor('#CCCC00')">
<area shape="rect" coords="201,12,207,21" href="javascript:showColor('#CCCC33')">
<area shape="rect" coords="209,12,215,21" href="javascript:showColor('#CCCC66')">
<area shape="rect" coords="217,12,223,21" href="javascript:showColor('#CCCC99')">
<area shape="rect" coords="225,12,231,21" href="javascript:showColor('#CCCCCC')">
<area shape="rect" coords="233,12,239,21" href="javascript:showColor('#CCCCFF')">
<area shape="rect" coords="241,12,247,21" href="javascript:showColor('#FFCC00')">
<area shape="rect" coords="249,12,255,21" href="javascript:showColor('#FFCC33')">
<area shape="rect" coords="257,12,263,21" href="javascript:showColor('#FFCC66')">
<area shape="rect" coords="265,12,271,21" href="javascript:showColor('#FFCC99')">
<area shape="rect" coords="273,12,279,21" href="javascript:showColor('#FFCCCC')">
<area shape="rect" coords="281,12,287,21" href="javascript:showColor('#FFCCFF')">
<area shape="rect" coords="1,23,7,32" href="javascript:showColor('#009900')">
<area shape="rect" coords="9,23,15,32" href="javascript:showColor('#009933')">
<area shape="rect" coords="17,23,23,32" href="javascript:showColor('#009966')">
<area shape="rect" coords="25,23,31,32" href="javascript:showColor('#009999')">
<area shape="rect" coords="33,23,39,32" href="javascript:showColor('#0099CC')">
<area shape="rect" coords="41,23,47,32" href="javascript:showColor('#0099FF')">
<area shape="rect" coords="49,23,55,32" href="javascript:showColor('#339900')">
<area shape="rect" coords="57,23,63,32" href="javascript:showColor('#339933')">
<area shape="rect" coords="65,23,71,32" href="javascript:showColor('#339966')">
<area shape="rect" coords="73,23,79,32" href="javascript:showColor('#339999')">
<area shape="rect" coords="81,23,87,32" href="javascript:showColor('#3399CC')">
<area shape="rect" coords="89,23,95,32" href="javascript:showColor('#3399FF')">
<area shape="rect" coords="97,23,103,32" href="javascript:showColor('#669900')">
<area shape="rect" coords="105,23,111,32" href="javascript:showColor('#669933')">
<area shape="rect" coords="113,23,119,32" href="javascript:showColor('#669966')">
<area shape="rect" coords="121,23,127,32" href="javascript:showColor('#669999')">
<area shape="rect" coords="129,23,135,32" href="javascript:showColor('#6699CC')">
<area shape="rect" coords="137,23,143,32" href="javascript:showColor('#6699FF')">
<area shape="rect" coords="145,23,151,32" href="javascript:showColor('#999900')">
<area shape="rect" coords="153,23,159,32" href="javascript:showColor('#999933')">
<area shape="rect" coords="161,23,167,32" href="javascript:showColor('#999966')">
<area shape="rect" coords="169,23,175,32" href="javascript:showColor('#999999')">
<area shape="rect" coords="177,23,183,32" href="javascript:showColor('#9999CC')">
<area shape="rect" coords="185,23,191,32" href="javascript:showColor('#9999FF')">
<area shape="rect" coords="193,23,199,32" href="javascript:showColor('#CC9900')">
<area shape="rect" coords="201,23,207,32" href="javascript:showColor('#CC9933')">
<area shape="rect" coords="209,23,215,32" href="javascript:showColor('#CC9966')">
<area shape="rect" coords="217,23,223,32" href="javascript:showColor('#CC9999')">
<area shape="rect" coords="225,23,231,32" href="javascript:showColor('#CC99CC')">
<area shape="rect" coords="233,23,239,32" href="javascript:showColor('#CC99FF')">
<area shape="rect" coords="241,23,247,32" href="javascript:showColor('#FF9900')">
<area shape="rect" coords="249,23,255,32" href="javascript:showColor('#FF9933')">
<area shape="rect" coords="257,23,263,32" href="javascript:showColor('#FF9966')">
<area shape="rect" coords="265,23,271,32" href="javascript:showColor('#FF9999')">
<area shape="rect" coords="273,23,279,32" href="javascript:showColor('#FF99CC')">
<area shape="rect" coords="281,23,287,32" href="javascript:showColor('#FF99FF')">
<area shape="rect" coords="1,34,7,43" href="javascript:showColor('#006600')">
<area shape="rect" coords="9,34,15,43" href="javascript:showColor('#006633')">
<area shape="rect" coords="17,34,23,43" href="javascript:showColor('#006666')">
<area shape="rect" coords="25,34,31,43" href="javascript:showColor('#006699')">
<area shape="rect" coords="33,34,39,43" href="javascript:showColor('#0066CC')">
<area shape="rect" coords="41,34,47,43" href="javascript:showColor('#0066FF')">
<area shape="rect" coords="49,34,55,43" href="javascript:showColor('#336600')">
<area shape="rect" coords="57,34,63,43" href="javascript:showColor('#336633')">
<area shape="rect" coords="65,34,71,43" href="javascript:showColor('#336666')">
<area shape="rect" coords="73,34,79,43" href="javascript:showColor('#336699')">
<area shape="rect" coords="81,34,87,43" href="javascript:showColor('#3366CC')">
<area shape="rect" coords="89,34,95,43" href="javascript:showColor('#3366FF')">
<area shape="rect" coords="97,34,103,43" href="javascript:showColor('#666600')">
<area shape="rect" coords="105,34,111,43" href="javascript:showColor('#666633')">
<area shape="rect" coords="113,34,119,43" href="javascript:showColor('#666666')">
<area shape="rect" coords="121,34,127,43" href="javascript:showColor('#666699')">
<area shape="rect" coords="129,34,135,43" href="javascript:showColor('#6666CC')">
<area shape="rect" coords="137,34,143,43" href="javascript:showColor('#6666FF')">
<area shape="rect" coords="145,34,151,43" href="javascript:showColor('#996600')">
<area shape="rect" coords="153,34,159,43" href="javascript:showColor('#996633')">
<area shape="rect" coords="161,34,167,43" href="javascript:showColor('#996666')">
<area shape="rect" coords="169,34,175,43" href="javascript:showColor('#996699')">
<area shape="rect" coords="177,34,183,43" href="javascript:showColor('#9966CC')">
<area shape="rect" coords="185,34,191,43" href="javascript:showColor('#9966FF')">
<area shape="rect" coords="193,34,199,43" href="javascript:showColor('#CC6600')">
<area shape="rect" coords="201,34,207,43" href="javascript:showColor('#CC6633')">
<area shape="rect" coords="209,34,215,43" href="javascript:showColor('#CC6666')">
<area shape="rect" coords="217,34,223,43" href="javascript:showColor('#CC6699')">
<area shape="rect" coords="225,34,231,43" href="javascript:showColor('#CC66CC')">
<area shape="rect" coords="233,34,239,43" href="javascript:showColor('#CC66FF')">
<area shape="rect" coords="241,34,247,43" href="javascript:showColor('#FF6600')">
<area shape="rect" coords="249,34,255,43" href="javascript:showColor('#FF6633')">
<area shape="rect" coords="257,34,263,43" href="javascript:showColor('#FF6666')">
<area shape="rect" coords="265,34,271,43" href="javascript:showColor('#FF6699')">
<area shape="rect" coords="273,34,279,43" href="javascript:showColor('#FF66CC')">
<area shape="rect" coords="281,34,287,43" href="javascript:showColor('#FF66FF')">
<area shape="rect" coords="1,45,7,54" href="javascript:showColor('#003300')">
<area shape="rect" coords="9,45,15,54" href="javascript:showColor('#003333')">
<area shape="rect" coords="17,45,23,54" href="javascript:showColor('#003366')">
<area shape="rect" coords="25,45,31,54" href="javascript:showColor('#003399')">
<area shape="rect" coords="33,45,39,54" href="javascript:showColor('#0033CC')">
<area shape="rect" coords="41,45,47,54" href="javascript:showColor('#0033FF')">
<area shape="rect" coords="49,45,55,54" href="javascript:showColor('#333300')">
<area shape="rect" coords="57,45,63,54" href="javascript:showColor('#333333')">
<area shape="rect" coords="65,45,71,54" href="javascript:showColor('#333366')">
<area shape="rect" coords="73,45,79,54" href="javascript:showColor('#333399')">
<area shape="rect" coords="81,45,87,54" href="javascript:showColor('#3333CC')">
<area shape="rect" coords="89,45,95,54" href="javascript:showColor('#3333FF')">
<area shape="rect" coords="97,45,103,54" href="javascript:showColor('#663300')">
<area shape="rect" coords="105,45,111,54" href="javascript:showColor('#663333')">
<area shape="rect" coords="113,45,119,54" href="javascript:showColor('#663366')">
<area shape="rect" coords="121,45,127,54" href="javascript:showColor('#663399')">
<area shape="rect" coords="129,45,135,54" href="javascript:showColor('#6633CC')">
<area shape="rect" coords="137,45,143,54" href="javascript:showColor('#6633FF')">
<area shape="rect" coords="145,45,151,54" href="javascript:showColor('#993300')">
<area shape="rect" coords="153,45,159,54" href="javascript:showColor('#993333')">
<area shape="rect" coords="161,45,167,54" href="javascript:showColor('#993366')">
<area shape="rect" coords="169,45,175,54" href="javascript:showColor('#993399')">
<area shape="rect" coords="177,45,183,54" href="javascript:showColor('#9933CC')">
<area shape="rect" coords="185,45,191,54" href="javascript:showColor('#9933FF')">
<area shape="rect" coords="193,45,199,54" href="javascript:showColor('#CC3300')">
<area shape="rect" coords="201,45,207,54" href="javascript:showColor('#CC3333')">
<area shape="rect" coords="209,45,215,54" href="javascript:showColor('#CC3366')">
<area shape="rect" coords="217,45,223,54" href="javascript:showColor('#CC3399')">
<area shape="rect" coords="225,45,231,54" href="javascript:showColor('#CC33CC')">
<area shape="rect" coords="233,45,239,54" href="javascript:showColor('#CC33FF')">
<area shape="rect" coords="241,45,247,54" href="javascript:showColor('#FF3300')">
<area shape="rect" coords="249,45,255,54" href="javascript:showColor('#FF3333')">
<area shape="rect" coords="257,45,263,54" href="javascript:showColor('#FF3366')">
<area shape="rect" coords="265,45,271,54" href="javascript:showColor('#FF3399')">
<area shape="rect" coords="273,45,279,54" href="javascript:showColor('#FF33CC')">
<area shape="rect" coords="281,45,287,54" href="javascript:showColor('#FF33FF')">
<area shape="rect" coords="1,56,7,65" href="javascript:showColor('#000000')">
<area shape="rect" coords="9,56,15,65" href="javascript:showColor('#000033')">
<area shape="rect" coords="17,56,23,65" href="javascript:showColor('#000066')">
<area shape="rect" coords="25,56,31,65" href="javascript:showColor('#000099')">
<area shape="rect" coords="33,56,39,65" href="javascript:showColor('#0000CC')">
<area shape="rect" coords="41,56,47,65" href="javascript:showColor('#0000FF')">
<area shape="rect" coords="49,56,55,65" href="javascript:showColor('#330000')">
<area shape="rect" coords="57,56,63,65" href="javascript:showColor('#330033')">
<area shape="rect" coords="65,56,71,65" href="javascript:showColor('#330066')">
<area shape="rect" coords="73,56,79,65" href="javascript:showColor('#330099')">
<area shape="rect" coords="81,56,87,65" href="javascript:showColor('#3300CC')">
<area shape="rect" coords="89,56,95,65" href="javascript:showColor('#3300FF')">
<area shape="rect" coords="97,56,103,65" href="javascript:showColor('#660000')">
<area shape="rect" coords="105,56,111,65" href="javascript:showColor('#660033')">
<area shape="rect" coords="113,56,119,65" href="javascript:showColor('#660066')">
<area shape="rect" coords="121,56,127,65" href="javascript:showColor('#660099')">
<area shape="rect" coords="129,56,135,65" href="javascript:showColor('#6600CC')">
<area shape="rect" coords="137,56,143,65" href="javascript:showColor('#6600FF')">
<area shape="rect" coords="145,56,151,65" href="javascript:showColor('#990000')">
<area shape="rect" coords="153,56,159,65" href="javascript:showColor('#990033')">
<area shape="rect" coords="161,56,167,65" href="javascript:showColor('#990066')">
<area shape="rect" coords="169,56,175,65" href="javascript:showColor('#990099')">
<area shape="rect" coords="177,56,183,65" href="javascript:showColor('#9900CC')">
<area shape="rect" coords="185,56,191,65" href="javascript:showColor('#9900FF')">
<area shape="rect" coords="193,56,199,65" href="javascript:showColor('#CC0000')">
<area shape="rect" coords="201,56,207,65" href="javascript:showColor('#CC0033')">
<area shape="rect" coords="209,56,215,65" href="javascript:showColor('#CC0066')">
<area shape="rect" coords="217,56,223,65" href="javascript:showColor('#CC0099')">
<area shape="rect" coords="225,56,231,65" href="javascript:showColor('#CC00CC')">
<area shape="rect" coords="233,56,239,65" href="javascript:showColor('#CC00FF')">
<area shape="rect" coords="241,56,247,65" href="javascript:showColor('#FF0000')">
<area shape="rect" coords="249,56,255,65" href="javascript:showColor('#FF0033')">
<area shape="rect" coords="257,56,263,65" href="javascript:showColor('#FF0066')">
<area shape="rect" coords="265,56,271,65" href="javascript:showColor('#FF0099')">
<area shape="rect" coords="273,56,279,65" href="javascript:showColor('#FF00CC')">
<area shape="rect" coords="281,56,287,65" href="javascript:showColor('#FF00FF')">
</map>
<img usemap="#colmap" src="colortable.gif" border=0 width=289 height=67>

</td>
<td><input name="titlex" type="text" value="54" size="3" maxsize="3">X Coordinates<br>
<input name="titley" type="text" value="10" size="3" maxsize="2">Y Coordinates</td>
</tr>
</table>

                          </TD>
                        </TR>
                      </TABLE>
				</TD>
                  </TR>
                </TABLE><br>
				<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
                  <TR>
                    <TD class="border">
                      <TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
                        <TR>
                          <TD colspan="1" class="header">
                            Pick your tag text.
                          </TD>
                        </TR>
                        <TR>
                          <TD class="main" colspan="4">
                            <table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="100"><input name="tagtext" value="This is my tagline." size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="tagcolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>
<map name="colmap2">
<area shape="rect" coords="1,1,7,10" href="javascript:showColor2('#00FF00')">
<area shape="rect" coords="9,1,15,10" href="javascript:showColor2('#00FF33')">
<area shape="rect" coords="17,1,23,10" href="javascript:showColor2('#00FF66')">
<area shape="rect" coords="25,1,31,10" href="javascript:showColor2('#00FF99')">
<area shape="rect" coords="33,1,39,10" href="javascript:showColor2('#00FFCC')">
<area shape="rect" coords="41,1,47,10" href="javascript:showColor2('#00FFFF')">
<area shape="rect" coords="49,1,55,10" href="javascript:showColor2('#33FF00')">
<area shape="rect" coords="57,1,63,10" href="javascript:showColor2('#33FF33')">
<area shape="rect" coords="65,1,71,10" href="javascript:showColor2('#33FF66')">
<area shape="rect" coords="73,1,79,10" href="javascript:showColor2('#33FF99')">
<area shape="rect" coords="81,1,87,10" href="javascript:showColor2('#33FFCC')">
<area shape="rect" coords="89,1,95,10" href="javascript:showColor2('#33FFFF')">
<area shape="rect" coords="97,1,103,10" href="javascript:showColor2('#66FF00')">
<area shape="rect" coords="105,1,111,10" href="javascript:showColor2('#66FF33')">
<area shape="rect" coords="113,1,119,10" href="javascript:showColor2('#66FF66')">
<area shape="rect" coords="121,1,127,10" href="javascript:showColor2('#66FF99')">
<area shape="rect" coords="129,1,135,10" href="javascript:showColor2('#66FFCC')">
<area shape="rect" coords="137,1,143,10" href="javascript:showColor2('#66FFFF')">
<area shape="rect" coords="145,1,151,10" href="javascript:showColor2('#99FF00')">
<area shape="rect" coords="153,1,159,10" href="javascript:showColor2('#99FF33')">
<area shape="rect" coords="161,1,167,10" href="javascript:showColor2('#99FF66')">
<area shape="rect" coords="169,1,175,10" href="javascript:showColor2('#99FF99')">
<area shape="rect" coords="177,1,183,10" href="javascript:showColor2('#99FFCC')">
<area shape="rect" coords="185,1,191,10" href="javascript:showColor2('#99FFFF')">
<area shape="rect" coords="193,1,199,10" href="javascript:showColor2('#CCFF00')">
<area shape="rect" coords="201,1,207,10" href="javascript:showColor2('#CCFF33')">
<area shape="rect" coords="209,1,215,10" href="javascript:showColor2('#CCFF66')">
<area shape="rect" coords="217,1,223,10" href="javascript:showColor2('#CCFF99')">
<area shape="rect" coords="225,1,231,10" href="javascript:showColor2('#CCFFCC')">
<area shape="rect" coords="233,1,239,10" href="javascript:showColor2('#CCFFFF')">
<area shape="rect" coords="241,1,247,10" href="javascript:showColor2('#FFFF00')">
<area shape="rect" coords="249,1,255,10" href="javascript:showColor2('#FFFF33')">
<area shape="rect" coords="257,1,263,10" href="javascript:showColor2('#FFFF66')">
<area shape="rect" coords="265,1,271,10" href="javascript:showColor2('#FFFF99')">
<area shape="rect" coords="273,1,279,10" href="javascript:showColor2('#FFFFCC')">
<area shape="rect" coords="281,1,287,10" href="javascript:showColor2('#FFFFFF')">
<area shape="rect" coords="1,12,7,21" href="javascript:showColor2('#00CC00')">
<area shape="rect" coords="9,12,15,21" href="javascript:showColor2('#00CC33')">
<area shape="rect" coords="17,12,23,21" href="javascript:showColor2('#00CC66')">
<area shape="rect" coords="25,12,31,21" href="javascript:showColor2('#00CC99')">
<area shape="rect" coords="33,12,39,21" href="javascript:showColor2('#00CCCC')">
<area shape="rect" coords="41,12,47,21" href="javascript:showColor2('#00CCFF')">
<area shape="rect" coords="49,12,55,21" href="javascript:showColor2('#33CC00')">
<area shape="rect" coords="57,12,63,21" href="javascript:showColor2('#33CC33')">
<area shape="rect" coords="65,12,71,21" href="javascript:showColor2('#33CC66')">
<area shape="rect" coords="73,12,79,21" href="javascript:showColor2('#33CC99')">
<area shape="rect" coords="81,12,87,21" href="javascript:showColor2('#33CCCC')">
<area shape="rect" coords="89,12,95,21" href="javascript:showColor2('#33CCFF')">
<area shape="rect" coords="97,12,103,21" href="javascript:showColor2('#66CC00')">
<area shape="rect" coords="105,12,111,21" href="javascript:showColor2('#66CC33')">
<area shape="rect" coords="113,12,119,21" href="javascript:showColor2('#66CC66')">
<area shape="rect" coords="121,12,127,21" href="javascript:showColor2('#66CC99')">
<area shape="rect" coords="129,12,135,21" href="javascript:showColor2('#66CCCC')">
<area shape="rect" coords="137,12,143,21" href="javascript:showColor2('#66CCFF')">
<area shape="rect" coords="145,12,151,21" href="javascript:showColor2('#99CC00')">
<area shape="rect" coords="153,12,159,21" href="javascript:showColor2('#99CC33')">
<area shape="rect" coords="161,12,167,21" href="javascript:showColor2('#99CC66')">
<area shape="rect" coords="169,12,175,21" href="javascript:showColor2('#99CC99')">
<area shape="rect" coords="177,12,183,21" href="javascript:showColor2('#99CCCC')">
<area shape="rect" coords="185,12,191,21" href="javascript:showColor2('#99CCFF')">
<area shape="rect" coords="193,12,199,21" href="javascript:showColor2('#CCCC00')">
<area shape="rect" coords="201,12,207,21" href="javascript:showColor2('#CCCC33')">
<area shape="rect" coords="209,12,215,21" href="javascript:showColor2('#CCCC66')">
<area shape="rect" coords="217,12,223,21" href="javascript:showColor2('#CCCC99')">
<area shape="rect" coords="225,12,231,21" href="javascript:showColor2('#CCCCCC')">
<area shape="rect" coords="233,12,239,21" href="javascript:showColor2('#CCCCFF')">
<area shape="rect" coords="241,12,247,21" href="javascript:showColor2('#FFCC00')">
<area shape="rect" coords="249,12,255,21" href="javascript:showColor2('#FFCC33')">
<area shape="rect" coords="257,12,263,21" href="javascript:showColor2('#FFCC66')">
<area shape="rect" coords="265,12,271,21" href="javascript:showColor2('#FFCC99')">
<area shape="rect" coords="273,12,279,21" href="javascript:showColor2('#FFCCCC')">
<area shape="rect" coords="281,12,287,21" href="javascript:showColor2('#FFCCFF')">
<area shape="rect" coords="1,23,7,32" href="javascript:showColor2('#009900')">
<area shape="rect" coords="9,23,15,32" href="javascript:showColor2('#009933')">
<area shape="rect" coords="17,23,23,32" href="javascript:showColor2('#009966')">
<area shape="rect" coords="25,23,31,32" href="javascript:showColor2('#009999')">
<area shape="rect" coords="33,23,39,32" href="javascript:showColor2('#0099CC')">
<area shape="rect" coords="41,23,47,32" href="javascript:showColor2('#0099FF')">
<area shape="rect" coords="49,23,55,32" href="javascript:showColor2('#339900')">
<area shape="rect" coords="57,23,63,32" href="javascript:showColor2('#339933')">
<area shape="rect" coords="65,23,71,32" href="javascript:showColor2('#339966')">
<area shape="rect" coords="73,23,79,32" href="javascript:showColor2('#339999')">
<area shape="rect" coords="81,23,87,32" href="javascript:showColor2('#3399CC')">
<area shape="rect" coords="89,23,95,32" href="javascript:showColor2('#3399FF')">
<area shape="rect" coords="97,23,103,32" href="javascript:showColor2('#669900')">
<area shape="rect" coords="105,23,111,32" href="javascript:showColor2('#669933')">
<area shape="rect" coords="113,23,119,32" href="javascript:showColor2('#669966')">
<area shape="rect" coords="121,23,127,32" href="javascript:showColor2('#669999')">
<area shape="rect" coords="129,23,135,32" href="javascript:showColor2('#6699CC')">
<area shape="rect" coords="137,23,143,32" href="javascript:showColor2('#6699FF')">
<area shape="rect" coords="145,23,151,32" href="javascript:showColor2('#999900')">
<area shape="rect" coords="153,23,159,32" href="javascript:showColor2('#999933')">
<area shape="rect" coords="161,23,167,32" href="javascript:showColor2('#999966')">
<area shape="rect" coords="169,23,175,32" href="javascript:showColor2('#999999')">
<area shape="rect" coords="177,23,183,32" href="javascript:showColor2('#9999CC')">
<area shape="rect" coords="185,23,191,32" href="javascript:showColor2('#9999FF')">
<area shape="rect" coords="193,23,199,32" href="javascript:showColor2('#CC9900')">
<area shape="rect" coords="201,23,207,32" href="javascript:showColor2('#CC9933')">
<area shape="rect" coords="209,23,215,32" href="javascript:showColor2('#CC9966')">
<area shape="rect" coords="217,23,223,32" href="javascript:showColor2('#CC9999')">
<area shape="rect" coords="225,23,231,32" href="javascript:showColor2('#CC99CC')">
<area shape="rect" coords="233,23,239,32" href="javascript:showColor2('#CC99FF')">
<area shape="rect" coords="241,23,247,32" href="javascript:showColor2('#FF9900')">
<area shape="rect" coords="249,23,255,32" href="javascript:showColor2('#FF9933')">
<area shape="rect" coords="257,23,263,32" href="javascript:showColor2('#FF9966')">
<area shape="rect" coords="265,23,271,32" href="javascript:showColor2('#FF9999')">
<area shape="rect" coords="273,23,279,32" href="javascript:showColor2('#FF99CC')">
<area shape="rect" coords="281,23,287,32" href="javascript:showColor2('#FF99FF')">
<area shape="rect" coords="1,34,7,43" href="javascript:showColor2('#006600')">
<area shape="rect" coords="9,34,15,43" href="javascript:showColor2('#006633')">
<area shape="rect" coords="17,34,23,43" href="javascript:showColor2('#006666')">
<area shape="rect" coords="25,34,31,43" href="javascript:showColor2('#006699')">
<area shape="rect" coords="33,34,39,43" href="javascript:showColor2('#0066CC')">
<area shape="rect" coords="41,34,47,43" href="javascript:showColor2('#0066FF')">
<area shape="rect" coords="49,34,55,43" href="javascript:showColor2('#336600')">
<area shape="rect" coords="57,34,63,43" href="javascript:showColor2('#336633')">
<area shape="rect" coords="65,34,71,43" href="javascript:showColor2('#336666')">
<area shape="rect" coords="73,34,79,43" href="javascript:showColor2('#336699')">
<area shape="rect" coords="81,34,87,43" href="javascript:showColor2('#3366CC')">
<area shape="rect" coords="89,34,95,43" href="javascript:showColor2('#3366FF')">
<area shape="rect" coords="97,34,103,43" href="javascript:showColor2('#666600')">
<area shape="rect" coords="105,34,111,43" href="javascript:showColor2('#666633')">
<area shape="rect" coords="113,34,119,43" href="javascript:showColor2('#666666')">
<area shape="rect" coords="121,34,127,43" href="javascript:showColor2('#666699')">
<area shape="rect" coords="129,34,135,43" href="javascript:showColor2('#6666CC')">
<area shape="rect" coords="137,34,143,43" href="javascript:showColor2('#6666FF')">
<area shape="rect" coords="145,34,151,43" href="javascript:showColor2('#996600')">
<area shape="rect" coords="153,34,159,43" href="javascript:showColor2('#996633')">
<area shape="rect" coords="161,34,167,43" href="javascript:showColor2('#996666')">
<area shape="rect" coords="169,34,175,43" href="javascript:showColor2('#996699')">
<area shape="rect" coords="177,34,183,43" href="javascript:showColor2('#9966CC')">
<area shape="rect" coords="185,34,191,43" href="javascript:showColor2('#9966FF')">
<area shape="rect" coords="193,34,199,43" href="javascript:showColor2('#CC6600')">
<area shape="rect" coords="201,34,207,43" href="javascript:showColor2('#CC6633')">
<area shape="rect" coords="209,34,215,43" href="javascript:showColor2('#CC6666')">
<area shape="rect" coords="217,34,223,43" href="javascript:showColor2('#CC6699')">
<area shape="rect" coords="225,34,231,43" href="javascript:showColor2('#CC66CC')">
<area shape="rect" coords="233,34,239,43" href="javascript:showColor2('#CC66FF')">
<area shape="rect" coords="241,34,247,43" href="javascript:showColor2('#FF6600')">
<area shape="rect" coords="249,34,255,43" href="javascript:showColor2('#FF6633')">
<area shape="rect" coords="257,34,263,43" href="javascript:showColor2('#FF6666')">
<area shape="rect" coords="265,34,271,43" href="javascript:showColor2('#FF6699')">
<area shape="rect" coords="273,34,279,43" href="javascript:showColor2('#FF66CC')">
<area shape="rect" coords="281,34,287,43" href="javascript:showColor2('#FF66FF')">
<area shape="rect" coords="1,45,7,54" href="javascript:showColor2('#003300')">
<area shape="rect" coords="9,45,15,54" href="javascript:showColor2('#003333')">
<area shape="rect" coords="17,45,23,54" href="javascript:showColor2('#003366')">
<area shape="rect" coords="25,45,31,54" href="javascript:showColor2('#003399')">
<area shape="rect" coords="33,45,39,54" href="javascript:showColor2('#0033CC')">
<area shape="rect" coords="41,45,47,54" href="javascript:showColor2('#0033FF')">
<area shape="rect" coords="49,45,55,54" href="javascript:showColor2('#333300')">
<area shape="rect" coords="57,45,63,54" href="javascript:showColor2('#333333')">
<area shape="rect" coords="65,45,71,54" href="javascript:showColor2('#333366')">
<area shape="rect" coords="73,45,79,54" href="javascript:showColor2('#333399')">
<area shape="rect" coords="81,45,87,54" href="javascript:showColor2('#3333CC')">
<area shape="rect" coords="89,45,95,54" href="javascript:showColor2('#3333FF')">
<area shape="rect" coords="97,45,103,54" href="javascript:showColor2('#663300')">
<area shape="rect" coords="105,45,111,54" href="javascript:showColor2('#663333')">
<area shape="rect" coords="113,45,119,54" href="javascript:showColor2('#663366')">
<area shape="rect" coords="121,45,127,54" href="javascript:showColor2('#663399')">
<area shape="rect" coords="129,45,135,54" href="javascript:showColor2('#6633CC')">
<area shape="rect" coords="137,45,143,54" href="javascript:showColor2('#6633FF')">
<area shape="rect" coords="145,45,151,54" href="javascript:showColor2('#993300')">
<area shape="rect" coords="153,45,159,54" href="javascript:showColor2('#993333')">
<area shape="rect" coords="161,45,167,54" href="javascript:showColor2('#993366')">
<area shape="rect" coords="169,45,175,54" href="javascript:showColor2('#993399')">
<area shape="rect" coords="177,45,183,54" href="javascript:showColor2('#9933CC')">
<area shape="rect" coords="185,45,191,54" href="javascript:showColor2('#9933FF')">
<area shape="rect" coords="193,45,199,54" href="javascript:showColor2('#CC3300')">
<area shape="rect" coords="201,45,207,54" href="javascript:showColor2('#CC3333')">
<area shape="rect" coords="209,45,215,54" href="javascript:showColor2('#CC3366')">
<area shape="rect" coords="217,45,223,54" href="javascript:showColor2('#CC3399')">
<area shape="rect" coords="225,45,231,54" href="javascript:showColor2('#CC33CC')">
<area shape="rect" coords="233,45,239,54" href="javascript:showColor2('#CC33FF')">
<area shape="rect" coords="241,45,247,54" href="javascript:showColor2('#FF3300')">
<area shape="rect" coords="249,45,255,54" href="javascript:showColor2('#FF3333')">
<area shape="rect" coords="257,45,263,54" href="javascript:showColor2('#FF3366')">
<area shape="rect" coords="265,45,271,54" href="javascript:showColor2('#FF3399')">
<area shape="rect" coords="273,45,279,54" href="javascript:showColor2('#FF33CC')">
<area shape="rect" coords="281,45,287,54" href="javascript:showColor2('#FF33FF')">
<area shape="rect" coords="1,56,7,65" href="javascript:showColor2('#000000')">
<area shape="rect" coords="9,56,15,65" href="javascript:showColor2('#000033')">
<area shape="rect" coords="17,56,23,65" href="javascript:showColor2('#000066')">
<area shape="rect" coords="25,56,31,65" href="javascript:showColor2('#000099')">
<area shape="rect" coords="33,56,39,65" href="javascript:showColor2('#0000CC')">
<area shape="rect" coords="41,56,47,65" href="javascript:showColor2('#0000FF')">
<area shape="rect" coords="49,56,55,65" href="javascript:showColor2('#330000')">
<area shape="rect" coords="57,56,63,65" href="javascript:showColor2('#330033')">
<area shape="rect" coords="65,56,71,65" href="javascript:showColor2('#330066')">
<area shape="rect" coords="73,56,79,65" href="javascript:showColor2('#330099')">
<area shape="rect" coords="81,56,87,65" href="javascript:showColor2('#3300CC')">
<area shape="rect" coords="89,56,95,65" href="javascript:showColor2('#3300FF')">
<area shape="rect" coords="97,56,103,65" href="javascript:showColor2('#660000')">
<area shape="rect" coords="105,56,111,65" href="javascript:showColor2('#660033')">
<area shape="rect" coords="113,56,119,65" href="javascript:showColor2('#660066')">
<area shape="rect" coords="121,56,127,65" href="javascript:showColor2('#660099')">
<area shape="rect" coords="129,56,135,65" href="javascript:showColor2('#6600CC')">
<area shape="rect" coords="137,56,143,65" href="javascript:showColor2('#6600FF')">
<area shape="rect" coords="145,56,151,65" href="javascript:showColor2('#990000')">
<area shape="rect" coords="153,56,159,65" href="javascript:showColor2('#990033')">
<area shape="rect" coords="161,56,167,65" href="javascript:showColor2('#990066')">
<area shape="rect" coords="169,56,175,65" href="javascript:showColor2('#990099')">
<area shape="rect" coords="177,56,183,65" href="javascript:showColor2('#9900CC')">
<area shape="rect" coords="185,56,191,65" href="javascript:showColor2('#9900FF')">
<area shape="rect" coords="193,56,199,65" href="javascript:showColor2('#CC0000')">
<area shape="rect" coords="201,56,207,65" href="javascript:showColor2('#CC0033')">
<area shape="rect" coords="209,56,215,65" href="javascript:showColor2('#CC0066')">
<area shape="rect" coords="217,56,223,65" href="javascript:showColor2('#CC0099')">
<area shape="rect" coords="225,56,231,65" href="javascript:showColor2('#CC00CC')">
<area shape="rect" coords="233,56,239,65" href="javascript:showColor2('#CC00FF')">
<area shape="rect" coords="241,56,247,65" href="javascript:showColor2('#FF0000')">
<area shape="rect" coords="249,56,255,65" href="javascript:showColor2('#FF0033')">
<area shape="rect" coords="257,56,263,65" href="javascript:showColor2('#FF0066')">
<area shape="rect" coords="265,56,271,65" href="javascript:showColor2('#FF0099')">
<area shape="rect" coords="273,56,279,65" href="javascript:showColor2('#FF00CC')">
<area shape="rect" coords="281,56,287,65" href="javascript:showColor2('#FF00FF')">
</map>
<img usemap="#colmap2" src="colortable.gif" border="0" width="289" height="67">

</td>
<td><input name="tagx" type="text" value="54" size="3" maxsize="3">X Coordinates<br>
<input name="tagy" type="text" value="30" size="3" maxsize="2">Y Coordinates</td>
</tr>
</table>

                          </TD>
                        </TR>
                      </TABLE>
                    </TD>
                  </TR>
                </TABLE>
				</TD>
                  </TR>
                </TABLE>
	   
	   </td>
</tr>
</table>

              </TD>
            </TR>
          </TABLE>
		  <input type="submit" value="Create"> <input type="reset" value="Reset">
        </TD>
      </TR>
	  </form>
    </TABLE>


				<br>Since install ApkaFuture has created <?php include("banners/counter.txt");
?> banner<?php
$filename = "banners/counter.txt";
$fp = fopen($filename, "r");
$count = fread($fp, 26);
fclose($fp);
if ($count > 1) {
	print("s");
} elseif ($count == 0) {
	print("s");
} 

?>.
               
</div>

<?php
include("footer.inc");

?>
</td>
</tr>
</table>

$footer
</body>
</html>
BUt its not working

check it for urself

http://apkafuture.com/afbanner.php
WT DO I DO NOW?
Reply With Quote
  #363  
Old 09-21-2005, 02:07 PM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by unknowngiver
OKAY
this is not working


So i add it like this


Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
</head>
<body>
$header

$navbar

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
	<td class="tcat">AF banner Maker</td>
</tr>
<tr>
	<td class="alt1"><?php
include("header.inc");

?>
<script type="text/javascript">
<!--

function showimage() {
if (!document.images)
return
document.images.banner.src=
'banner/' + document.fastbanner.select_banner.options[document.fastbanner.select_banner.selectedIndex].value
}

//-->
</script>
<script type="text/javascript">
<!-- Begin
function showColor(val) {
document.fastbanner.titlecolor.value = val;
}
function showColor2(val2) {
document.fastbanner.tagcolor.value = val2;
}
//  End -->
</script>

<div align="center">
<TABLE summary="table" cellspacing="0" cellpadding="0" width="100%">
	<form action="banner.php" name="fastbanner" method="post">
      <TR>
        <TD align="center">
<table cellspacing="0" cellpadding="0" width="100%">

<tr>
       <td width="20%" aign="top">
	   		<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
                  <TR>
                    <TD class="border">
                      <TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
                        <TR>
                          <TD colspan="1" class="header">
                            Instructions
                          </TD>
                        </TR>
                        <TR>
                          <TD class="main" colspan="4">
?&nbsp;Select the banner to edit.<BR>
<BR>
?&nbsp;Enter Title and Tag Line as this will be the text that will be on your banner.<BR>
<BR>
?&nbsp;Choose your Title and Tag Line colors.<BR>
<BR>
?&nbsp;Choose your Title and Tag Line coordinates. You can click the banner where you want the text to see the coordinates to use.<BR>
<BR>
?&nbsp;Submit the information and your banner will be created.
                          </TD>
                        </TR>
                      </TABLE>
                    </TD>
                  </TR>
                </TABLE>
	   </td>
	   <td width="5%">&nbsp;</td>
       <td width="75%">
	   
	   			  <TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
                  <TR>
                    <TD class="border">
                      <TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
                        <TR>
                          <TD colspan="5" class="header">
                            Select Your Banner.
                          </TD>
                        </TR>
                        <TR>
                          <TD class="main" colspan="5" align="center">
<select name="select_banner" onChange="showimage()">
<?php
$open = opendir("banner");
while ($files = readdir($open)) {
	$filename = $files;
	if ($filename == "."){
print "\n";
}
elseif ($filename == ".."){
print "\n";
}
else {
print "<option value=\"$filename\">$filename</option>\n";
}
} 
?>
</select><br>
    <table cellspacing="0" cellpadding="0" width="484" summary="Banner Table">
      <tr>
        <td rowspan="2"><img src="Yscala1.gif" width="16" height="79" border="0" alt=" " /></td>
        <td><img src="Xscala1.gif" width="468" height="15" border="0" alt=" " /></td>
      </tr>
      <tr>
        <td valign="top"><img ismap onclick="alert('Coordinates:\n\nX POS: '+self.event.offsetX+'\nY POS: '+self.event.offsetY);" name="banner" src="banner/ban01.png" width="468" height="60" /></td>
      </tr>
    </table>
                          </TD>
                        </TR>
                      </TABLE>
                    </TD>
                  </TR>
                </TABLE><br>
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
                  <TR>
                    <TD class="border">
                      <TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
                        <TR>
                          <TD colspan="1" class="header">
                            Pick your title text.
                          </TD>
                        </TR>
                        <TR>
                          <TD class="main" colspan="4">
                            <table cellspacing="0" cellpadding="0" width="100%">

<tr>
<td width="100"><input name="titletext" value="YourSite" size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="titlecolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>
<map name="colmap">
<area shape="rect" coords="1,1,7,10" href="javascript:showColor('#00FF00')">
<area shape="rect" coords="9,1,15,10" href="javascript:showColor('#00FF33')">
<area shape="rect" coords="17,1,23,10" href="javascript:showColor('#00FF66')">
<area shape="rect" coords="25,1,31,10" href="javascript:showColor('#00FF99')">
<area shape="rect" coords="33,1,39,10" href="javascript:showColor('#00FFCC')">
<area shape="rect" coords="41,1,47,10" href="javascript:showColor('#00FFFF')">
<area shape="rect" coords="49,1,55,10" href="javascript:showColor('#33FF00')">
<area shape="rect" coords="57,1,63,10" href="javascript:showColor('#33FF33')">
<area shape="rect" coords="65,1,71,10" href="javascript:showColor('#33FF66')">
<area shape="rect" coords="73,1,79,10" href="javascript:showColor('#33FF99')">
<area shape="rect" coords="81,1,87,10" href="javascript:showColor('#33FFCC')">
<area shape="rect" coords="89,1,95,10" href="javascript:showColor('#33FFFF')">
<area shape="rect" coords="97,1,103,10" href="javascript:showColor('#66FF00')">
<area shape="rect" coords="105,1,111,10" href="javascript:showColor('#66FF33')">
<area shape="rect" coords="113,1,119,10" href="javascript:showColor('#66FF66')">
<area shape="rect" coords="121,1,127,10" href="javascript:showColor('#66FF99')">
<area shape="rect" coords="129,1,135,10" href="javascript:showColor('#66FFCC')">
<area shape="rect" coords="137,1,143,10" href="javascript:showColor('#66FFFF')">
<area shape="rect" coords="145,1,151,10" href="javascript:showColor('#99FF00')">
<area shape="rect" coords="153,1,159,10" href="javascript:showColor('#99FF33')">
<area shape="rect" coords="161,1,167,10" href="javascript:showColor('#99FF66')">
<area shape="rect" coords="169,1,175,10" href="javascript:showColor('#99FF99')">
<area shape="rect" coords="177,1,183,10" href="javascript:showColor('#99FFCC')">
<area shape="rect" coords="185,1,191,10" href="javascript:showColor('#99FFFF')">
<area shape="rect" coords="193,1,199,10" href="javascript:showColor('#CCFF00')">
<area shape="rect" coords="201,1,207,10" href="javascript:showColor('#CCFF33')">
<area shape="rect" coords="209,1,215,10" href="javascript:showColor('#CCFF66')">
<area shape="rect" coords="217,1,223,10" href="javascript:showColor('#CCFF99')">
<area shape="rect" coords="225,1,231,10" href="javascript:showColor('#CCFFCC')">
<area shape="rect" coords="233,1,239,10" href="javascript:showColor('#CCFFFF')">
<area shape="rect" coords="241,1,247,10" href="javascript:showColor('#FFFF00')">
<area shape="rect" coords="249,1,255,10" href="javascript:showColor('#FFFF33')">
<area shape="rect" coords="257,1,263,10" href="javascript:showColor('#FFFF66')">
<area shape="rect" coords="265,1,271,10" href="javascript:showColor('#FFFF99')">
<area shape="rect" coords="273,1,279,10" href="javascript:showColor('#FFFFCC')">
<area shape="rect" coords="281,1,287,10" href="javascript:showColor('#FFFFFF')">
<area shape="rect" coords="1,12,7,21" href="javascript:showColor('#00CC00')">
<area shape="rect" coords="9,12,15,21" href="javascript:showColor('#00CC33')">
<area shape="rect" coords="17,12,23,21" href="javascript:showColor('#00CC66')">
<area shape="rect" coords="25,12,31,21" href="javascript:showColor('#00CC99')">
<area shape="rect" coords="33,12,39,21" href="javascript:showColor('#00CCCC')">
<area shape="rect" coords="41,12,47,21" href="javascript:showColor('#00CCFF')">
<area shape="rect" coords="49,12,55,21" href="javascript:showColor('#33CC00')">
<area shape="rect" coords="57,12,63,21" href="javascript:showColor('#33CC33')">
<area shape="rect" coords="65,12,71,21" href="javascript:showColor('#33CC66')">
<area shape="rect" coords="73,12,79,21" href="javascript:showColor('#33CC99')">
<area shape="rect" coords="81,12,87,21" href="javascript:showColor('#33CCCC')">
<area shape="rect" coords="89,12,95,21" href="javascript:showColor('#33CCFF')">
<area shape="rect" coords="97,12,103,21" href="javascript:showColor('#66CC00')">
<area shape="rect" coords="105,12,111,21" href="javascript:showColor('#66CC33')">
<area shape="rect" coords="113,12,119,21" href="javascript:showColor('#66CC66')">
<area shape="rect" coords="121,12,127,21" href="javascript:showColor('#66CC99')">
<area shape="rect" coords="129,12,135,21" href="javascript:showColor('#66CCCC')">
<area shape="rect" coords="137,12,143,21" href="javascript:showColor('#66CCFF')">
<area shape="rect" coords="145,12,151,21" href="javascript:showColor('#99CC00')">
<area shape="rect" coords="153,12,159,21" href="javascript:showColor('#99CC33')">
<area shape="rect" coords="161,12,167,21" href="javascript:showColor('#99CC66')">
<area shape="rect" coords="169,12,175,21" href="javascript:showColor('#99CC99')">
<area shape="rect" coords="177,12,183,21" href="javascript:showColor('#99CCCC')">
<area shape="rect" coords="185,12,191,21" href="javascript:showColor('#99CCFF')">
<area shape="rect" coords="193,12,199,21" href="javascript:showColor('#CCCC00')">
<area shape="rect" coords="201,12,207,21" href="javascript:showColor('#CCCC33')">
<area shape="rect" coords="209,12,215,21" href="javascript:showColor('#CCCC66')">
<area shape="rect" coords="217,12,223,21" href="javascript:showColor('#CCCC99')">
<area shape="rect" coords="225,12,231,21" href="javascript:showColor('#CCCCCC')">
<area shape="rect" coords="233,12,239,21" href="javascript:showColor('#CCCCFF')">
<area shape="rect" coords="241,12,247,21" href="javascript:showColor('#FFCC00')">
<area shape="rect" coords="249,12,255,21" href="javascript:showColor('#FFCC33')">
<area shape="rect" coords="257,12,263,21" href="javascript:showColor('#FFCC66')">
<area shape="rect" coords="265,12,271,21" href="javascript:showColor('#FFCC99')">
<area shape="rect" coords="273,12,279,21" href="javascript:showColor('#FFCCCC')">
<area shape="rect" coords="281,12,287,21" href="javascript:showColor('#FFCCFF')">
<area shape="rect" coords="1,23,7,32" href="javascript:showColor('#009900')">
<area shape="rect" coords="9,23,15,32" href="javascript:showColor('#009933')">
<area shape="rect" coords="17,23,23,32" href="javascript:showColor('#009966')">
<area shape="rect" coords="25,23,31,32" href="javascript:showColor('#009999')">
<area shape="rect" coords="33,23,39,32" href="javascript:showColor('#0099CC')">
<area shape="rect" coords="41,23,47,32" href="javascript:showColor('#0099FF')">
<area shape="rect" coords="49,23,55,32" href="javascript:showColor('#339900')">
<area shape="rect" coords="57,23,63,32" href="javascript:showColor('#339933')">
<area shape="rect" coords="65,23,71,32" href="javascript:showColor('#339966')">
<area shape="rect" coords="73,23,79,32" href="javascript:showColor('#339999')">
<area shape="rect" coords="81,23,87,32" href="javascript:showColor('#3399CC')">
<area shape="rect" coords="89,23,95,32" href="javascript:showColor('#3399FF')">
<area shape="rect" coords="97,23,103,32" href="javascript:showColor('#669900')">
<area shape="rect" coords="105,23,111,32" href="javascript:showColor('#669933')">
<area shape="rect" coords="113,23,119,32" href="javascript:showColor('#669966')">
<area shape="rect" coords="121,23,127,32" href="javascript:showColor('#669999')">
<area shape="rect" coords="129,23,135,32" href="javascript:showColor('#6699CC')">
<area shape="rect" coords="137,23,143,32" href="javascript:showColor('#6699FF')">
<area shape="rect" coords="145,23,151,32" href="javascript:showColor('#999900')">
<area shape="rect" coords="153,23,159,32" href="javascript:showColor('#999933')">
<area shape="rect" coords="161,23,167,32" href="javascript:showColor('#999966')">
<area shape="rect" coords="169,23,175,32" href="javascript:showColor('#999999')">
<area shape="rect" coords="177,23,183,32" href="javascript:showColor('#9999CC')">
<area shape="rect" coords="185,23,191,32" href="javascript:showColor('#9999FF')">
<area shape="rect" coords="193,23,199,32" href="javascript:showColor('#CC9900')">
<area shape="rect" coords="201,23,207,32" href="javascript:showColor('#CC9933')">
<area shape="rect" coords="209,23,215,32" href="javascript:showColor('#CC9966')">
<area shape="rect" coords="217,23,223,32" href="javascript:showColor('#CC9999')">
<area shape="rect" coords="225,23,231,32" href="javascript:showColor('#CC99CC')">
<area shape="rect" coords="233,23,239,32" href="javascript:showColor('#CC99FF')">
<area shape="rect" coords="241,23,247,32" href="javascript:showColor('#FF9900')">
<area shape="rect" coords="249,23,255,32" href="javascript:showColor('#FF9933')">
<area shape="rect" coords="257,23,263,32" href="javascript:showColor('#FF9966')">
<area shape="rect" coords="265,23,271,32" href="javascript:showColor('#FF9999')">
<area shape="rect" coords="273,23,279,32" href="javascript:showColor('#FF99CC')">
<area shape="rect" coords="281,23,287,32" href="javascript:showColor('#FF99FF')">
<area shape="rect" coords="1,34,7,43" href="javascript:showColor('#006600')">
<area shape="rect" coords="9,34,15,43" href="javascript:showColor('#006633')">
<area shape="rect" coords="17,34,23,43" href="javascript:showColor('#006666')">
<area shape="rect" coords="25,34,31,43" href="javascript:showColor('#006699')">
<area shape="rect" coords="33,34,39,43" href="javascript:showColor('#0066CC')">
<area shape="rect" coords="41,34,47,43" href="javascript:showColor('#0066FF')">
<area shape="rect" coords="49,34,55,43" href="javascript:showColor('#336600')">
<area shape="rect" coords="57,34,63,43" href="javascript:showColor('#336633')">
<area shape="rect" coords="65,34,71,43" href="javascript:showColor('#336666')">
<area shape="rect" coords="73,34,79,43" href="javascript:showColor('#336699')">
<area shape="rect" coords="81,34,87,43" href="javascript:showColor('#3366CC')">
<area shape="rect" coords="89,34,95,43" href="javascript:showColor('#3366FF')">
<area shape="rect" coords="97,34,103,43" href="javascript:showColor('#666600')">
<area shape="rect" coords="105,34,111,43" href="javascript:showColor('#666633')">
<area shape="rect" coords="113,34,119,43" href="javascript:showColor('#666666')">
<area shape="rect" coords="121,34,127,43" href="javascript:showColor('#666699')">
<area shape="rect" coords="129,34,135,43" href="javascript:showColor('#6666CC')">
<area shape="rect" coords="137,34,143,43" href="javascript:showColor('#6666FF')">
<area shape="rect" coords="145,34,151,43" href="javascript:showColor('#996600')">
<area shape="rect" coords="153,34,159,43" href="javascript:showColor('#996633')">
<area shape="rect" coords="161,34,167,43" href="javascript:showColor('#996666')">
<area shape="rect" coords="169,34,175,43" href="javascript:showColor('#996699')">
<area shape="rect" coords="177,34,183,43" href="javascript:showColor('#9966CC')">
<area shape="rect" coords="185,34,191,43" href="javascript:showColor('#9966FF')">
<area shape="rect" coords="193,34,199,43" href="javascript:showColor('#CC6600')">
<area shape="rect" coords="201,34,207,43" href="javascript:showColor('#CC6633')">
<area shape="rect" coords="209,34,215,43" href="javascript:showColor('#CC6666')">
<area shape="rect" coords="217,34,223,43" href="javascript:showColor('#CC6699')">
<area shape="rect" coords="225,34,231,43" href="javascript:showColor('#CC66CC')">
<area shape="rect" coords="233,34,239,43" href="javascript:showColor('#CC66FF')">
<area shape="rect" coords="241,34,247,43" href="javascript:showColor('#FF6600')">
<area shape="rect" coords="249,34,255,43" href="javascript:showColor('#FF6633')">
<area shape="rect" coords="257,34,263,43" href="javascript:showColor('#FF6666')">
<area shape="rect" coords="265,34,271,43" href="javascript:showColor('#FF6699')">
<area shape="rect" coords="273,34,279,43" href="javascript:showColor('#FF66CC')">
<area shape="rect" coords="281,34,287,43" href="javascript:showColor('#FF66FF')">
<area shape="rect" coords="1,45,7,54" href="javascript:showColor('#003300')">
<area shape="rect" coords="9,45,15,54" href="javascript:showColor('#003333')">
<area shape="rect" coords="17,45,23,54" href="javascript:showColor('#003366')">
<area shape="rect" coords="25,45,31,54" href="javascript:showColor('#003399')">
<area shape="rect" coords="33,45,39,54" href="javascript:showColor('#0033CC')">
<area shape="rect" coords="41,45,47,54" href="javascript:showColor('#0033FF')">
<area shape="rect" coords="49,45,55,54" href="javascript:showColor('#333300')">
<area shape="rect" coords="57,45,63,54" href="javascript:showColor('#333333')">
<area shape="rect" coords="65,45,71,54" href="javascript:showColor('#333366')">
<area shape="rect" coords="73,45,79,54" href="javascript:showColor('#333399')">
<area shape="rect" coords="81,45,87,54" href="javascript:showColor('#3333CC')">
<area shape="rect" coords="89,45,95,54" href="javascript:showColor('#3333FF')">
<area shape="rect" coords="97,45,103,54" href="javascript:showColor('#663300')">
<area shape="rect" coords="105,45,111,54" href="javascript:showColor('#663333')">
<area shape="rect" coords="113,45,119,54" href="javascript:showColor('#663366')">
<area shape="rect" coords="121,45,127,54" href="javascript:showColor('#663399')">
<area shape="rect" coords="129,45,135,54" href="javascript:showColor('#6633CC')">
<area shape="rect" coords="137,45,143,54" href="javascript:showColor('#6633FF')">
<area shape="rect" coords="145,45,151,54" href="javascript:showColor('#993300')">
<area shape="rect" coords="153,45,159,54" href="javascript:showColor('#993333')">
<area shape="rect" coords="161,45,167,54" href="javascript:showColor('#993366')">
<area shape="rect" coords="169,45,175,54" href="javascript:showColor('#993399')">
<area shape="rect" coords="177,45,183,54" href="javascript:showColor('#9933CC')">
<area shape="rect" coords="185,45,191,54" href="javascript:showColor('#9933FF')">
<area shape="rect" coords="193,45,199,54" href="javascript:showColor('#CC3300')">
<area shape="rect" coords="201,45,207,54" href="javascript:showColor('#CC3333')">
<area shape="rect" coords="209,45,215,54" href="javascript:showColor('#CC3366')">
<area shape="rect" coords="217,45,223,54" href="javascript:showColor('#CC3399')">
<area shape="rect" coords="225,45,231,54" href="javascript:showColor('#CC33CC')">
<area shape="rect" coords="233,45,239,54" href="javascript:showColor('#CC33FF')">
<area shape="rect" coords="241,45,247,54" href="javascript:showColor('#FF3300')">
<area shape="rect" coords="249,45,255,54" href="javascript:showColor('#FF3333')">
<area shape="rect" coords="257,45,263,54" href="javascript:showColor('#FF3366')">
<area shape="rect" coords="265,45,271,54" href="javascript:showColor('#FF3399')">
<area shape="rect" coords="273,45,279,54" href="javascript:showColor('#FF33CC')">
<area shape="rect" coords="281,45,287,54" href="javascript:showColor('#FF33FF')">
<area shape="rect" coords="1,56,7,65" href="javascript:showColor('#000000')">
<area shape="rect" coords="9,56,15,65" href="javascript:showColor('#000033')">
<area shape="rect" coords="17,56,23,65" href="javascript:showColor('#000066')">
<area shape="rect" coords="25,56,31,65" href="javascript:showColor('#000099')">
<area shape="rect" coords="33,56,39,65" href="javascript:showColor('#0000CC')">
<area shape="rect" coords="41,56,47,65" href="javascript:showColor('#0000FF')">
<area shape="rect" coords="49,56,55,65" href="javascript:showColor('#330000')">
<area shape="rect" coords="57,56,63,65" href="javascript:showColor('#330033')">
<area shape="rect" coords="65,56,71,65" href="javascript:showColor('#330066')">
<area shape="rect" coords="73,56,79,65" href="javascript:showColor('#330099')">
<area shape="rect" coords="81,56,87,65" href="javascript:showColor('#3300CC')">
<area shape="rect" coords="89,56,95,65" href="javascript:showColor('#3300FF')">
<area shape="rect" coords="97,56,103,65" href="javascript:showColor('#660000')">
<area shape="rect" coords="105,56,111,65" href="javascript:showColor('#660033')">
<area shape="rect" coords="113,56,119,65" href="javascript:showColor('#660066')">
<area shape="rect" coords="121,56,127,65" href="javascript:showColor('#660099')">
<area shape="rect" coords="129,56,135,65" href="javascript:showColor('#6600CC')">
<area shape="rect" coords="137,56,143,65" href="javascript:showColor('#6600FF')">
<area shape="rect" coords="145,56,151,65" href="javascript:showColor('#990000')">
<area shape="rect" coords="153,56,159,65" href="javascript:showColor('#990033')">
<area shape="rect" coords="161,56,167,65" href="javascript:showColor('#990066')">
<area shape="rect" coords="169,56,175,65" href="javascript:showColor('#990099')">
<area shape="rect" coords="177,56,183,65" href="javascript:showColor('#9900CC')">
<area shape="rect" coords="185,56,191,65" href="javascript:showColor('#9900FF')">
<area shape="rect" coords="193,56,199,65" href="javascript:showColor('#CC0000')">
<area shape="rect" coords="201,56,207,65" href="javascript:showColor('#CC0033')">
<area shape="rect" coords="209,56,215,65" href="javascript:showColor('#CC0066')">
<area shape="rect" coords="217,56,223,65" href="javascript:showColor('#CC0099')">
<area shape="rect" coords="225,56,231,65" href="javascript:showColor('#CC00CC')">
<area shape="rect" coords="233,56,239,65" href="javascript:showColor('#CC00FF')">
<area shape="rect" coords="241,56,247,65" href="javascript:showColor('#FF0000')">
<area shape="rect" coords="249,56,255,65" href="javascript:showColor('#FF0033')">
<area shape="rect" coords="257,56,263,65" href="javascript:showColor('#FF0066')">
<area shape="rect" coords="265,56,271,65" href="javascript:showColor('#FF0099')">
<area shape="rect" coords="273,56,279,65" href="javascript:showColor('#FF00CC')">
<area shape="rect" coords="281,56,287,65" href="javascript:showColor('#FF00FF')">
</map>
<img usemap="#colmap" src="colortable.gif" border=0 width=289 height=67>

</td>
<td><input name="titlex" type="text" value="54" size="3" maxsize="3">X Coordinates<br>
<input name="titley" type="text" value="10" size="3" maxsize="2">Y Coordinates</td>
</tr>
</table>

                          </TD>
                        </TR>
                      </TABLE>
				</TD>
                  </TR>
                </TABLE><br>
				<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
                  <TR>
                    <TD class="border">
                      <TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
                        <TR>
                          <TD colspan="1" class="header">
                            Pick your tag text.
                          </TD>
                        </TR>
                        <TR>
                          <TD class="main" colspan="4">
                            <table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="100"><input name="tagtext" value="This is my tagline." size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="tagcolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>
<map name="colmap2">
<area shape="rect" coords="1,1,7,10" href="javascript:showColor2('#00FF00')">
<area shape="rect" coords="9,1,15,10" href="javascript:showColor2('#00FF33')">
<area shape="rect" coords="17,1,23,10" href="javascript:showColor2('#00FF66')">
<area shape="rect" coords="25,1,31,10" href="javascript:showColor2('#00FF99')">
<area shape="rect" coords="33,1,39,10" href="javascript:showColor2('#00FFCC')">
<area shape="rect" coords="41,1,47,10" href="javascript:showColor2('#00FFFF')">
<area shape="rect" coords="49,1,55,10" href="javascript:showColor2('#33FF00')">
<area shape="rect" coords="57,1,63,10" href="javascript:showColor2('#33FF33')">
<area shape="rect" coords="65,1,71,10" href="javascript:showColor2('#33FF66')">
<area shape="rect" coords="73,1,79,10" href="javascript:showColor2('#33FF99')">
<area shape="rect" coords="81,1,87,10" href="javascript:showColor2('#33FFCC')">
<area shape="rect" coords="89,1,95,10" href="javascript:showColor2('#33FFFF')">
<area shape="rect" coords="97,1,103,10" href="javascript:showColor2('#66FF00')">
<area shape="rect" coords="105,1,111,10" href="javascript:showColor2('#66FF33')">
<area shape="rect" coords="113,1,119,10" href="javascript:showColor2('#66FF66')">
<area shape="rect" coords="121,1,127,10" href="javascript:showColor2('#66FF99')">
<area shape="rect" coords="129,1,135,10" href="javascript:showColor2('#66FFCC')">
<area shape="rect" coords="137,1,143,10" href="javascript:showColor2('#66FFFF')">
<area shape="rect" coords="145,1,151,10" href="javascript:showColor2('#99FF00')">
<area shape="rect" coords="153,1,159,10" href="javascript:showColor2('#99FF33')">
<area shape="rect" coords="161,1,167,10" href="javascript:showColor2('#99FF66')">
<area shape="rect" coords="169,1,175,10" href="javascript:showColor2('#99FF99')">
<area shape="rect" coords="177,1,183,10" href="javascript:showColor2('#99FFCC')">
<area shape="rect" coords="185,1,191,10" href="javascript:showColor2('#99FFFF')">
<area shape="rect" coords="193,1,199,10" href="javascript:showColor2('#CCFF00')">
<area shape="rect" coords="201,1,207,10" href="javascript:showColor2('#CCFF33')">
<area shape="rect" coords="209,1,215,10" href="javascript:showColor2('#CCFF66')">
<area shape="rect" coords="217,1,223,10" href="javascript:showColor2('#CCFF99')">
<area shape="rect" coords="225,1,231,10" href="javascript:showColor2('#CCFFCC')">
<area shape="rect" coords="233,1,239,10" href="javascript:showColor2('#CCFFFF')">
<area shape="rect" coords="241,1,247,10" href="javascript:showColor2('#FFFF00')">
<area shape="rect" coords="249,1,255,10" href="javascript:showColor2('#FFFF33')">
<area shape="rect" coords="257,1,263,10" href="javascript:showColor2('#FFFF66')">
<area shape="rect" coords="265,1,271,10" href="javascript:showColor2('#FFFF99')">
<area shape="rect" coords="273,1,279,10" href="javascript:showColor2('#FFFFCC')">
<area shape="rect" coords="281,1,287,10" href="javascript:showColor2('#FFFFFF')">
<area shape="rect" coords="1,12,7,21" href="javascript:showColor2('#00CC00')">
<area shape="rect" coords="9,12,15,21" href="javascript:showColor2('#00CC33')">
<area shape="rect" coords="17,12,23,21" href="javascript:showColor2('#00CC66')">
<area shape="rect" coords="25,12,31,21" href="javascript:showColor2('#00CC99')">
<area shape="rect" coords="33,12,39,21" href="javascript:showColor2('#00CCCC')">
<area shape="rect" coords="41,12,47,21" href="javascript:showColor2('#00CCFF')">
<area shape="rect" coords="49,12,55,21" href="javascript:showColor2('#33CC00')">
<area shape="rect" coords="57,12,63,21" href="javascript:showColor2('#33CC33')">
<area shape="rect" coords="65,12,71,21" href="javascript:showColor2('#33CC66')">
<area shape="rect" coords="73,12,79,21" href="javascript:showColor2('#33CC99')">
<area shape="rect" coords="81,12,87,21" href="javascript:showColor2('#33CCCC')">
<area shape="rect" coords="89,12,95,21" href="javascript:showColor2('#33CCFF')">
<area shape="rect" coords="97,12,103,21" href="javascript:showColor2('#66CC00')">
<area shape="rect" coords="105,12,111,21" href="javascript:showColor2('#66CC33')">
<area shape="rect" coords="113,12,119,21" href="javascript:showColor2('#66CC66')">
<area shape="rect" coords="121,12,127,21" href="javascript:showColor2('#66CC99')">
<area shape="rect" coords="129,12,135,21" href="javascript:showColor2('#66CCCC')">
<area shape="rect" coords="137,12,143,21" href="javascript:showColor2('#66CCFF')">
<area shape="rect" coords="145,12,151,21" href="javascript:showColor2('#99CC00')">
<area shape="rect" coords="153,12,159,21" href="javascript:showColor2('#99CC33')">
<area shape="rect" coords="161,12,167,21" href="javascript:showColor2('#99CC66')">
<area shape="rect" coords="169,12,175,21" href="javascript:showColor2('#99CC99')">
<area shape="rect" coords="177,12,183,21" href="javascript:showColor2('#99CCCC')">
<area shape="rect" coords="185,12,191,21" href="javascript:showColor2('#99CCFF')">
<area shape="rect" coords="193,12,199,21" href="javascript:showColor2('#CCCC00')">
<area shape="rect" coords="201,12,207,21" href="javascript:showColor2('#CCCC33')">
<area shape="rect" coords="209,12,215,21" href="javascript:showColor2('#CCCC66')">
<area shape="rect" coords="217,12,223,21" href="javascript:showColor2('#CCCC99')">
<area shape="rect" coords="225,12,231,21" href="javascript:showColor2('#CCCCCC')">
<area shape="rect" coords="233,12,239,21" href="javascript:showColor2('#CCCCFF')">
<area shape="rect" coords="241,12,247,21" href="javascript:showColor2('#FFCC00')">
<area shape="rect" coords="249,12,255,21" href="javascript:showColor2('#FFCC33')">
<area shape="rect" coords="257,12,263,21" href="javascript:showColor2('#FFCC66')">
<area shape="rect" coords="265,12,271,21" href="javascript:showColor2('#FFCC99')">
<area shape="rect" coords="273,12,279,21" href="javascript:showColor2('#FFCCCC')">
<area shape="rect" coords="281,12,287,21" href="javascript:showColor2('#FFCCFF')">
<area shape="rect" coords="1,23,7,32" href="javascript:showColor2('#009900')">
<area shape="rect" coords="9,23,15,32" href="javascript:showColor2('#009933')">
<area shape="rect" coords="17,23,23,32" href="javascript:showColor2('#009966')">
<area shape="rect" coords="25,23,31,32" href="javascript:showColor2('#009999')">
<area shape="rect" coords="33,23,39,32" href="javascript:showColor2('#0099CC')">
<area shape="rect" coords="41,23,47,32" href="javascript:showColor2('#0099FF')">
<area shape="rect" coords="49,23,55,32" href="javascript:showColor2('#339900')">
<area shape="rect" coords="57,23,63,32" href="javascript:showColor2('#339933')">
<area shape="rect" coords="65,23,71,32" href="javascript:showColor2('#339966')">
<area shape="rect" coords="73,23,79,32" href="javascript:showColor2('#339999')">
<area shape="rect" coords="81,23,87,32" href="javascript:showColor2('#3399CC')">
<area shape="rect" coords="89,23,95,32" href="javascript:showColor2('#3399FF')">
<area shape="rect" coords="97,23,103,32" href="javascript:showColor2('#669900')">
<area shape="rect" coords="105,23,111,32" href="javascript:showColor2('#669933')">
<area shape="rect" coords="113,23,119,32" href="javascript:showColor2('#669966')">
<area shape="rect" coords="121,23,127,32" href="javascript:showColor2('#669999')">
<area shape="rect" coords="129,23,135,32" href="javascript:showColor2('#6699CC')">
<area shape="rect" coords="137,23,143,32" href="javascript:showColor2('#6699FF')">
<area shape="rect" coords="145,23,151,32" href="javascript:showColor2('#999900')">
<area shape="rect" coords="153,23,159,32" href="javascript:showColor2('#999933')">
<area shape="rect" coords="161,23,167,32" href="javascript:showColor2('#999966')">
<area shape="rect" coords="169,23,175,32" href="javascript:showColor2('#999999')">
<area shape="rect" coords="177,23,183,32" href="javascript:showColor2('#9999CC')">
<area shape="rect" coords="185,23,191,32" href="javascript:showColor2('#9999FF')">
<area shape="rect" coords="193,23,199,32" href="javascript:showColor2('#CC9900')">
<area shape="rect" coords="201,23,207,32" href="javascript:showColor2('#CC9933')">
<area shape="rect" coords="209,23,215,32" href="javascript:showColor2('#CC9966')">
<area shape="rect" coords="217,23,223,32" href="javascript:showColor2('#CC9999')">
<area shape="rect" coords="225,23,231,32" href="javascript:showColor2('#CC99CC')">
<area shape="rect" coords="233,23,239,32" href="javascript:showColor2('#CC99FF')">
<area shape="rect" coords="241,23,247,32" href="javascript:showColor2('#FF9900')">
<area shape="rect" coords="249,23,255,32" href="javascript:showColor2('#FF9933')">
<area shape="rect" coords="257,23,263,32" href="javascript:showColor2('#FF9966')">
<area shape="rect" coords="265,23,271,32" href="javascript:showColor2('#FF9999')">
<area shape="rect" coords="273,23,279,32" href="javascript:showColor2('#FF99CC')">
<area shape="rect" coords="281,23,287,32" href="javascript:showColor2('#FF99FF')">
<area shape="rect" coords="1,34,7,43" href="javascript:showColor2('#006600')">
<area shape="rect" coords="9,34,15,43" href="javascript:showColor2('#006633')">
<area shape="rect" coords="17,34,23,43" href="javascript:showColor2('#006666')">
<area shape="rect" coords="25,34,31,43" href="javascript:showColor2('#006699')">
<area shape="rect" coords="33,34,39,43" href="javascript:showColor2('#0066CC')">
<area shape="rect" coords="41,34,47,43" href="javascript:showColor2('#0066FF')">
<area shape="rect" coords="49,34,55,43" href="javascript:showColor2('#336600')">
<area shape="rect" coords="57,34,63,43" href="javascript:showColor2('#336633')">
<area shape="rect" coords="65,34,71,43" href="javascript:showColor2('#336666')">
<area shape="rect" coords="73,34,79,43" href="javascript:showColor2('#336699')">
<area shape="rect" coords="81,34,87,43" href="javascript:showColor2('#3366CC')">
<area shape="rect" coords="89,34,95,43" href="javascript:showColor2('#3366FF')">
<area shape="rect" coords="97,34,103,43" href="javascript:showColor2('#666600')">
<area shape="rect" coords="105,34,111,43" href="javascript:showColor2('#666633')">
<area shape="rect" coords="113,34,119,43" href="javascript:showColor2('#666666')">
<area shape="rect" coords="121,34,127,43" href="javascript:showColor2('#666699')">
<area shape="rect" coords="129,34,135,43" href="javascript:showColor2('#6666CC')">
<area shape="rect" coords="137,34,143,43" href="javascript:showColor2('#6666FF')">
<area shape="rect" coords="145,34,151,43" href="javascript:showColor2('#996600')">
<area shape="rect" coords="153,34,159,43" href="javascript:showColor2('#996633')">
<area shape="rect" coords="161,34,167,43" href="javascript:showColor2('#996666')">
<area shape="rect" coords="169,34,175,43" href="javascript:showColor2('#996699')">
<area shape="rect" coords="177,34,183,43" href="javascript:showColor2('#9966CC')">
<area shape="rect" coords="185,34,191,43" href="javascript:showColor2('#9966FF')">
<area shape="rect" coords="193,34,199,43" href="javascript:showColor2('#CC6600')">
<area shape="rect" coords="201,34,207,43" href="javascript:showColor2('#CC6633')">
<area shape="rect" coords="209,34,215,43" href="javascript:showColor2('#CC6666')">
<area shape="rect" coords="217,34,223,43" href="javascript:showColor2('#CC6699')">
<area shape="rect" coords="225,34,231,43" href="javascript:showColor2('#CC66CC')">
<area shape="rect" coords="233,34,239,43" href="javascript:showColor2('#CC66FF')">
<area shape="rect" coords="241,34,247,43" href="javascript:showColor2('#FF6600')">
<area shape="rect" coords="249,34,255,43" href="javascript:showColor2('#FF6633')">
<area shape="rect" coords="257,34,263,43" href="javascript:showColor2('#FF6666')">
<area shape="rect" coords="265,34,271,43" href="javascript:showColor2('#FF6699')">
<area shape="rect" coords="273,34,279,43" href="javascript:showColor2('#FF66CC')">
<area shape="rect" coords="281,34,287,43" href="javascript:showColor2('#FF66FF')">
<area shape="rect" coords="1,45,7,54" href="javascript:showColor2('#003300')">
<area shape="rect" coords="9,45,15,54" href="javascript:showColor2('#003333')">
<area shape="rect" coords="17,45,23,54" href="javascript:showColor2('#003366')">
<area shape="rect" coords="25,45,31,54" href="javascript:showColor2('#003399')">
<area shape="rect" coords="33,45,39,54" href="javascript:showColor2('#0033CC')">
<area shape="rect" coords="41,45,47,54" href="javascript:showColor2('#0033FF')">
<area shape="rect" coords="49,45,55,54" href="javascript:showColor2('#333300')">
<area shape="rect" coords="57,45,63,54" href="javascript:showColor2('#333333')">
<area shape="rect" coords="65,45,71,54" href="javascript:showColor2('#333366')">
<area shape="rect" coords="73,45,79,54" href="javascript:showColor2('#333399')">
<area shape="rect" coords="81,45,87,54" href="javascript:showColor2('#3333CC')">
<area shape="rect" coords="89,45,95,54" href="javascript:showColor2('#3333FF')">
<area shape="rect" coords="97,45,103,54" href="javascript:showColor2('#663300')">
<area shape="rect" coords="105,45,111,54" href="javascript:showColor2('#663333')">
<area shape="rect" coords="113,45,119,54" href="javascript:showColor2('#663366')">
<area shape="rect" coords="121,45,127,54" href="javascript:showColor2('#663399')">
<area shape="rect" coords="129,45,135,54" href="javascript:showColor2('#6633CC')">
<area shape="rect" coords="137,45,143,54" href="javascript:showColor2('#6633FF')">
<area shape="rect" coords="145,45,151,54" href="javascript:showColor2('#993300')">
<area shape="rect" coords="153,45,159,54" href="javascript:showColor2('#993333')">
<area shape="rect" coords="161,45,167,54" href="javascript:showColor2('#993366')">
<area shape="rect" coords="169,45,175,54" href="javascript:showColor2('#993399')">
<area shape="rect" coords="177,45,183,54" href="javascript:showColor2('#9933CC')">
<area shape="rect" coords="185,45,191,54" href="javascript:showColor2('#9933FF')">
<area shape="rect" coords="193,45,199,54" href="javascript:showColor2('#CC3300')">
<area shape="rect" coords="201,45,207,54" href="javascript:showColor2('#CC3333')">
<area shape="rect" coords="209,45,215,54" href="javascript:showColor2('#CC3366')">
<area shape="rect" coords="217,45,223,54" href="javascript:showColor2('#CC3399')">
<area shape="rect" coords="225,45,231,54" href="javascript:showColor2('#CC33CC')">
<area shape="rect" coords="233,45,239,54" href="javascript:showColor2('#CC33FF')">
<area shape="rect" coords="241,45,247,54" href="javascript:showColor2('#FF3300')">
<area shape="rect" coords="249,45,255,54" href="javascript:showColor2('#FF3333')">
<area shape="rect" coords="257,45,263,54" href="javascript:showColor2('#FF3366')">
<area shape="rect" coords="265,45,271,54" href="javascript:showColor2('#FF3399')">
<area shape="rect" coords="273,45,279,54" href="javascript:showColor2('#FF33CC')">
<area shape="rect" coords="281,45,287,54" href="javascript:showColor2('#FF33FF')">
<area shape="rect" coords="1,56,7,65" href="javascript:showColor2('#000000')">
<area shape="rect" coords="9,56,15,65" href="javascript:showColor2('#000033')">
<area shape="rect" coords="17,56,23,65" href="javascript:showColor2('#000066')">
<area shape="rect" coords="25,56,31,65" href="javascript:showColor2('#000099')">
<area shape="rect" coords="33,56,39,65" href="javascript:showColor2('#0000CC')">
<area shape="rect" coords="41,56,47,65" href="javascript:showColor2('#0000FF')">
<area shape="rect" coords="49,56,55,65" href="javascript:showColor2('#330000')">
<area shape="rect" coords="57,56,63,65" href="javascript:showColor2('#330033')">
<area shape="rect" coords="65,56,71,65" href="javascript:showColor2('#330066')">
<area shape="rect" coords="73,56,79,65" href="javascript:showColor2('#330099')">
<area shape="rect" coords="81,56,87,65" href="javascript:showColor2('#3300CC')">
<area shape="rect" coords="89,56,95,65" href="javascript:showColor2('#3300FF')">
<area shape="rect" coords="97,56,103,65" href="javascript:showColor2('#660000')">
<area shape="rect" coords="105,56,111,65" href="javascript:showColor2('#660033')">
<area shape="rect" coords="113,56,119,65" href="javascript:showColor2('#660066')">
<area shape="rect" coords="121,56,127,65" href="javascript:showColor2('#660099')">
<area shape="rect" coords="129,56,135,65" href="javascript:showColor2('#6600CC')">
<area shape="rect" coords="137,56,143,65" href="javascript:showColor2('#6600FF')">
<area shape="rect" coords="145,56,151,65" href="javascript:showColor2('#990000')">
<area shape="rect" coords="153,56,159,65" href="javascript:showColor2('#990033')">
<area shape="rect" coords="161,56,167,65" href="javascript:showColor2('#990066')">
<area shape="rect" coords="169,56,175,65" href="javascript:showColor2('#990099')">
<area shape="rect" coords="177,56,183,65" href="javascript:showColor2('#9900CC')">
<area shape="rect" coords="185,56,191,65" href="javascript:showColor2('#9900FF')">
<area shape="rect" coords="193,56,199,65" href="javascript:showColor2('#CC0000')">
<area shape="rect" coords="201,56,207,65" href="javascript:showColor2('#CC0033')">
<area shape="rect" coords="209,56,215,65" href="javascript:showColor2('#CC0066')">
<area shape="rect" coords="217,56,223,65" href="javascript:showColor2('#CC0099')">
<area shape="rect" coords="225,56,231,65" href="javascript:showColor2('#CC00CC')">
<area shape="rect" coords="233,56,239,65" href="javascript:showColor2('#CC00FF')">
<area shape="rect" coords="241,56,247,65" href="javascript:showColor2('#FF0000')">
<area shape="rect" coords="249,56,255,65" href="javascript:showColor2('#FF0033')">
<area shape="rect" coords="257,56,263,65" href="javascript:showColor2('#FF0066')">
<area shape="rect" coords="265,56,271,65" href="javascript:showColor2('#FF0099')">
<area shape="rect" coords="273,56,279,65" href="javascript:showColor2('#FF00CC')">
<area shape="rect" coords="281,56,287,65" href="javascript:showColor2('#FF00FF')">
</map>
<img usemap="#colmap2" src="colortable.gif" border="0" width="289" height="67">

</td>
<td><input name="tagx" type="text" value="54" size="3" maxsize="3">X Coordinates<br>
<input name="tagy" type="text" value="30" size="3" maxsize="2">Y Coordinates</td>
</tr>
</table>

                          </TD>
                        </TR>
                      </TABLE>
                    </TD>
                  </TR>
                </TABLE>
				</TD>
                  </TR>
                </TABLE>
	   
	   </td>
</tr>
</table>

              </TD>
            </TR>
          </TABLE>
		  <input type="submit" value="Create"> <input type="reset" value="Reset">
        </TD>
      </TR>
	  </form>
    </TABLE>


				<br>Since install ApkaFuture has created <?php include("banners/counter.txt");
?> banner<?php
$filename = "banners/counter.txt";
$fp = fopen($filename, "r");
$count = fread($fp, 26);
fclose($fp);
if ($count > 1) {
	print("s");
} elseif ($count == 0) {
	print("s");
} 

?>.
               
</div>

<?php
include("footer.inc");

?>
</td>
</tr>
</table>

$footer
</body>
</html>
BUt its not working

check it for urself

http://apkafuture.com/afbanner.php
WT DO I DO NOW?
You may want to reread the first post or post your problem in another thread. What isn't working?
Reply With Quote
  #364  
Old 09-23-2005, 06:14 AM
LEAD_WEIGHT LEAD_WEIGHT is offline
 
Join Date: Feb 2005
Location: Canada
Posts: 369
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Would I need to add .php to every template I create or can I use the same .php script. Is it possible to just add more than one to the template name to .php ?
Reply With Quote
  #365  
Old 09-23-2005, 11:38 AM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vbulletin templates do not parse php.
Reply With Quote
  #366  
Old 09-23-2005, 11:02 PM
LEAD_WEIGHT LEAD_WEIGHT is offline
 
Join Date: Feb 2005
Location: Canada
Posts: 369
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HotLinkHosting
vbulletin templates do not parse php.
So, I have to create a .php script for each template I make? :ermm:
Reply With Quote
  #367  
Old 09-23-2005, 11:10 PM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No, one php script can handle several templates. Take a look at some of the php documents and search for $templatename. As you'll see this is where the vbulletin template used for that function is determined.

At the bottom of the pages you'll see:
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template($templatename) . '");');

This is the part of the document that prints the template set to $templatename earilier in the document.
Reply With Quote
  #368  
Old 09-23-2005, 11:22 PM
LEAD_WEIGHT LEAD_WEIGHT is offline
 
Join Date: Feb 2005
Location: Canada
Posts: 369
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HotLinkHosting
No, one php script can handle several templates. Take a look at some of the php documents and search for $templatename. As you'll see this is where the vbulletin template used for that function is determined.

At the bottom of the pages you'll see:
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template($templatename) . '");');

This is the part of the document that prints the template set to $templatename earilier in the document.

What about Custom templates that I make? I should of been more specific on question.

*edit
I must of been blind not to see this.

Code:
 if ($_REQUEST['do'] == 'xxx')
{
    eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}
Reply With Quote
  #369  
Old 09-26-2005, 08:41 AM
hypnoticpimp hypnoticpimp is offline
 
Join Date: Dec 2004
Posts: 132
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i have an html file. that i want on this! where would i add it on, on that php file or the template i made

hey! how bout flash! whats the html code for flash onit! cause i enabled flash on mines! with this
HTML Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="830" height="580" id="nittoflash27(www.NittoLive.info)" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="h" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<embed src="http://www.ralphige.com/images/nittoflash27(www.NittoLive.info).swf" quality="high" bgcolor="#000000" width="830" height="580" name="nittoflash27(www.NittoLive.info)" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
But it wont Play! heres my page www.NittoLive.info/forums/nittomovie.php
Reply With Quote
  #370  
Old 09-28-2005, 05:15 AM
hypnoticpimp hypnoticpimp is offline
 
Join Date: Dec 2004
Posts: 132
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

still no help?
Reply With Quote
  #371  
Old 09-28-2005, 05:25 AM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

try creating a new thread for what you want to do and be more specific. Your posts seem to have nothing to do with this thread/how-to.

You'll get better responses if you list your problems in your own thread.
Reply With Quote
  #372  
Old 10-07-2005, 07:44 PM
Allan's Avatar
Allan Allan is offline
 
Join Date: Jun 2003
Location: France
Posts: 1,513
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

work on vB 3.5 Gold ?

no update of this hack ?
Reply With Quote
  #373  
Old 10-07-2005, 07:51 PM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes it works.
Reply With Quote
  #374  
Old 10-07-2005, 08:24 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah it works fine on 3.5.0 Gold.
Reply With Quote
  #375  
Old 10-07-2005, 08:33 PM
Allan's Avatar
Allan Allan is offline
 
Join Date: Jun 2003
Location: France
Posts: 1,513
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks
Reply With Quote
  #376  
Old 10-09-2005, 01:28 PM
akanevsky akanevsky is offline
 
Join Date: Apr 2005
Posts: 3,972
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Would you please write this for 3.5?
I could, just don't wanna look like I'm plagiarising
Thanks.
Reply With Quote
  #377  
Old 10-09-2005, 02:38 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It works on 3.5. There is no need to rewrite it.
Reply With Quote
  #378  
Old 10-09-2005, 09:37 PM
akanevsky akanevsky is offline
 
Join Date: Apr 2005
Posts: 3,972
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, except a few very minor changes.
We need to stay up to date
Reply With Quote
  #379  
Old 10-09-2005, 09:51 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What minor changes would those be? I am using this and it works fine.
Reply With Quote
  #380  
Old 10-09-2005, 09:53 PM
welo welo is offline
 
Join Date: Jan 2004
Location: Portland, Oregon
Posts: 172
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've been considering writing an updated version myself. At 26 pages this thread is already clumsy enough, and the last time the original post was updated was a year and a half ago. I agree the whole topic could use some fresh perspective.
Reply With Quote
  #381  
Old 10-10-2005, 12:09 AM
akanevsky akanevsky is offline
 
Join Date: Apr 2005
Posts: 3,972
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="https://vborg.vbsupport.ru/showthread.php?p=791513#post791513" target="_blank">https://vborg.vbsupport.ru/showt...513#post791513</a>
Reply With Quote
  #382  
Old 10-10-2005, 01:57 AM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks! I'll check it out.
Reply With Quote
  #383  
Old 10-10-2005, 04:56 PM
ryans ryans is offline
 
Join Date: Feb 2002
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Awesome tutorial. I've got it running on lots of my site now. Any way to reverse this hack? I have this damn content management system and it needs a header and footer file. I tried using obstart but it won't work right.

So is there anyway to have this as a header.php and a footer.php file that I can call from my dumb program? Thanks guys!
Reply With Quote
  #384  
Old 10-12-2005, 03:39 PM
sherykah sherykah is offline
 
Join Date: May 2002
Location: detroit
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How would I make a vb powered page that would pull in another web page without the use of the template?
Reply With Quote
  #385  
Old 10-13-2005, 01:55 AM
LEAD_WEIGHT LEAD_WEIGHT is offline
 
Join Date: Feb 2005
Location: Canada
Posts: 369
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sherykah
How would I make a vb powered page that would pull in another web page without the use of the template?
<iframe></iframe> is one way, but then you need to create a template.
Reply With Quote
  #386  
Old 10-15-2005, 02:22 PM
sherykah sherykah is offline
 
Join Date: May 2002
Location: detroit
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you. I already have a template but didn't think about using iframe. The only limit with that it it won't show in netscape.
Reply With Quote
  #387  
Old 10-24-2005, 03:31 PM
unknowngiver unknowngiver is offline
 
Join Date: Jul 2005
Posts: 121
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hm templates wont parse PHP..then How do i make a custom PHP page? Can anyone Please help me
Reply With Quote
  #388  
Old 10-24-2005, 05:41 PM
welo welo is offline
 
Join Date: Jan 2004
Location: Portland, Oregon
Posts: 172
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sherykah
The only limit with that it it won't show in netscape.
You mean... won't show in NS4. Just for fun try running VB in that archaic wonder and see what happens.
Reply With Quote
  #389  
Old 11-15-2005, 06:31 PM
ResaleBroker's Avatar
ResaleBroker ResaleBroker is offline
 
Join Date: Aug 2004
Location: Arizona, USA
Posts: 111
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent. Thank You!
Reply With Quote
  #390  
Old 11-18-2005, 08:12 PM
fiber_cut fiber_cut is offline
 
Join Date: Oct 2005
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This doesnt work for me I jsut get a blank page..
Reply With Quote
  #391  
Old 11-18-2005, 08:16 PM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Then you didn't add the templates for the style you are using.
Reply With Quote
  #392  
Old 11-18-2005, 08:18 PM
fiber_cut fiber_cut is offline
 
Join Date: Oct 2005
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i am only using one style and I added it as a template.

matter of fact if I go into the style and edit the file I created it is in fact under the style.
Code:
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'upload'); // change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(

);

// get special data templates from the datastore
$specialtemplates = array(

);

// pre-cache templates used by all actions
$globaltemplates = array(
    'applied',
AHH Shoot I feel like an idiot...

I didnt see the last spot where you had TEST..

Sorry man!!

Good work though!!!
Reply With Quote
  #393  
Old 11-27-2005, 02:29 AM
gracye gracye is offline
 
Join Date: Jul 2005
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm using vb2, is there a custom page for that? I tried using this one and it wouldn't work, I kept getting an error. I tried just modyfying a page I had and then creating a template but it wouldn't work.

HELP!
Reply With Quote
  #394  
Old 11-29-2005, 07:09 PM
MRGTB MRGTB is offline
 
Join Date: Dec 2004
Posts: 548
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do I change this so on the new page you create in the Nav Bar it doesn't show the page title as a sub title under the forum home title on the left in the navbar. Instead I just want it to list the page title only without a link back to the forum home
Reply With Quote
  #395  
Old 11-30-2005, 05:16 AM
nader nader is offline
 
Join Date: Feb 2004
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how to inculde the vbphrase ?
Reply With Quote
  #396  
Old 12-02-2005, 10:10 PM
bitblaster bitblaster is offline
 
Join Date: Oct 2004
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is very nice!

I am using vB 3.5.1, and it worked perfectly fine!

http://runescapeproject.com/updates.php is where I have mine at, and it worked WITHOUT ERROR.

Nader, I am not an expert, but I think it might be worth it to look in the vB user manual or API guide or something... just my opinion.
Reply With Quote
  #397  
Old 12-15-2005, 03:26 PM
ncangler's Avatar
ncangler ncangler is offline
 
Join Date: Dec 2004
Location: North Carolina
Posts: 174
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't know if this is possbile or not but I'm trying to create a stand alone index.php file that contains some code for a Beach Tide Table. The trick is getting the vBulletin header, footer and navbar on the page so it looks consistent with the rest of my site. The Tide Table code has to be in the index.php file as it contains information for multiple locations that is refreshed when you click on the location you want. Here is the Tide Table link:

http://www.ncangler.com/tides/wilmington/index.php

My forums are located here: http://www.ncangler.com/forums/

Can anyone tell me if this can be implemented with this hack? Thanks for your help!
Reply With Quote
  #398  
Old 12-18-2005, 10:13 PM
Cebby Cebby is offline
 
Join Date: Aug 2005
Location: Pittsburgh, PA
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A shot in the dark, but what if you nest the tidetable index.php under a directory of your choosing?
Reply With Quote
  #399  
Old 12-18-2005, 10:28 PM
ncangler's Avatar
ncangler ncangler is offline
 
Join Date: Dec 2004
Location: North Carolina
Posts: 174
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Cebby. Thanks for the response. I'm not familiar with nesting. How would I do that?

Quote:
Originally Posted by Cebby
A shot in the dark, but what if you nest the tidetable index.php under a directory of your choosing?
Reply With Quote
  #400  
Old 12-19-2005, 01:05 AM
Cebby Cebby is offline
 
Join Date: Aug 2005
Location: Pittsburgh, PA
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nesting might not be the right nomenclature. Basically instead of calling the index.php that is the main vB page (in the root), you put another file called index.php inside another directory and point to that file instead. Like I said...shot in the dark...

FWIW, I haven't implemented this hack yet, but will tonight... :cheeky:
Reply With Quote
  #401  
Old 12-20-2005, 01:05 AM
Cebby Cebby is offline
 
Join Date: Aug 2005
Location: Pittsburgh, PA
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Another thought (and probably more reliable). I was poking around in the admincp tonight and found where you can change the name of the main forum page. The default is index.php, but you can name it anything you want - you just need to rename the vB index.php file to the new name you choose.

Under vBulletin Options -> Forum Home Page Options -> (first item)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:13 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.11047 seconds
  • Memory Usage 2,921KB
  • Queries Executed 56 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (2)bbcode_html
  • (6)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_article
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (41)post_thanks_box
  • (5)post_thanks_box_bit
  • (41)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (41)post_thanks_postbit_info
  • (40)postbit
  • (1)postbit_attachment
  • (41)postbit_onlinestatus
  • (41)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete