Forum
Subscribe


Structuring Your Pages

Creating or Editing Your CC Web Pages
Here are a couple of things you need to know about editing your php scripted Cash Crusader files.
You will find a directory called /pages, this is where you will go to make any changes to your site design or information.

You will find all the files of your webpages in this directory: /www/pages/
[e.g.. If you wanted to edit your index page you would go to /www/pages/index.php
and edit that file.]

Header and Footer:
header.php and footer.php are the main menu, top, sides and bottom of your web
pages.
All of your webpages must have the coding to insert the header and footer of your
site. Which you will see below:
<? include("header.php");?>
<? include("footer.php");?>

If you would like to edit your main menu, or add a different logo, then you would access the file
header.php. The footer.php file contains the bottom of your website: e.g. total number of members, copyright etc.

Also remember when placing the scripting into your pages you do not need a " " to be placed in front of every special character like ( ' and @ ). (Old CAC sites required this - CC do not)

This is what a php web page should like. All your webpages are in php format NOT html.
Use the default index.php page below as an example.
Everything in bold must be in a page that you create or edit and it must be in the exact location as you see it displayed below. All other text is optional.
<-------Begin Example------>
<? include("setup.php");?>
<? include("header.php");?>

Members
FREE Membership <br>
Get Paid for Reading Your eMail<br>
Refer Others and Get Paid<br>
$5.00 Dollar Payout!<br>
International Members are Welcome!<br>
Receive eMail on the best products<br>
Receive eMail on the best opportunities <br>
6 Ref levels of commission under you<br>
Level 1 - 20% | Level 2 - 10% | Level 3 - 5%<br>
Level 4 - 3% | Level 5 - 2% | Level 6 - 1%<br>
<br>
<br>
<? include("footer.php");?>
<-------End Example------>

« 1 2View All»