How to build a fanlisting using phpFanList 3 cialis?
So you have downloaded phpFanList 3, now how do you build a website with it viagra dosage? First of all a fanlisting (or other listing) can of course be build in different ways. The way described here is how it was intended, but this isn't the only way. However using this technique has been proven to be effective in both maintenance and ease of doing discount viagra.
Requirements
Before you can actually build your fanlisting you need a few things first viagra fast delivery.
- Download the latest version of phpFanList.
- Install phpFanList and set the settings in the admin section (like your name, e-mail addres and website URL).
- Some basic knowledge of HTML.
- A design you want your fanlisting to look like.
Headers and footers
Most fanlistings have a few different pages, like a join page, a members page, . . . but they all share some common layout items cialis. Those are mostly the head of your page (containing some imagery and a menu) and the footer (the bottom part of the page). The rest between is considered content and is different for each page .
There are 4 important pages already available when you install phpFanList . Those are the join page (join.php), the member list (members.php), the update page (update.php) and the news page (news.php). Those have the default layout and use the default header and footer the comes with phpFanList.
phpFanList already has header and footers file available. They are located in the includes directory and are originally called header.inc.php and footer.inc.php. Especially the header file is important, since it already contains some PHP that is required for phpFanList to work.
You can open the header and footer files in an editor of your choice and you'll see that they are almost basic HTML files. You can now easily edit those files (except for the first line in header.inc.php. This is required for phpFanList to work properly). When you edit those files you can see your result in the phpfanlist_stat.php file or in any of the other 4 files mentioned above.
New pages
If you want to add extra pages to your site, like for example a page with codes or a contact page, you can also use those header and footer files. All you need to do is add 2 lines to the new file you created.
<?php include_once('includes/header.inc.php'); ?> needs to go at the very top of the file.<?php include_once('includes/footer.inc.php'); ?> goes at the bottom.
That's all you need. In between those 2 lines goes your normal page content. When you upload the page to your server, you'll see that this new page will have the same layout at your other pages. (Please note that the new file you create needs to have a .php extention)
Statistics
Since you're using the headers provided by phpFanList, you also have access to some values that you can display to your visitors. Those can be the number of members you have or the last date you updated your fanlisting. You can see the available values in use in the phpfanlist_stat.php file that comes with the phpFanList installation. So all you need to do is copy and paste what you need.