Frequently Asked Questions: script questions: phpfanbase customize:
Below are all the frequently asked questions added to the site. Please read through them before asking a question in the forums!
Latest
-
1
Can I remove the credit line that says “Powered by [name of script here]” and/or put it on a separate page?
No. The conditions of you using our scripts are that the credit line is not removed in any way, shape or form. You may not remove the credit line, or move it to another place. If you would like to do this, you will need written permission from the script author first, and they may charge you for this. Our staff put many hours into creating, testing and securing the scripts they write. They make no money from these scripts and simply want recognition for their work.
All scripts available at CodeGrrl.com are LINKWARE. This means that you MUST provide a link back to CodeGrrl.com, and if there is a credit line embedded into the script, you are NOT to remove it, as this violates our terms of use.
May 2, 2006 |
By Amelie |
Filed under CodeGrrl, FA-PHPHosting: Customize, FAQ, Flinx: Customize, NL-PHPMail, PHPCalendar, PHPCurrently, PHPFanBase: Customize, PHPQuotes, Scripts
-
2
How can I allow members to join more than once with the same email?
You must replace a bit of code in join.php, which is explained in this tutorial.
November 29, 2004 |
By Sasha |
Filed under FAQ, PHPFanBase: Customize, Scripts
-
3
Is it possible to do a count of the total number of members in different fanlistings if they are on different web domains?
Yes, please see this forum thread.
June 3, 2004 |
By Sasha |
Filed under FAQ, PHPFanBase: Customize, Scripts
-
4
How can I add a field to the join form, and make it a required field?
That is explained in this forum thread.
June 3, 2004 |
By Sasha |
Filed under FAQ, PHPFanBase: Customize, Scripts
-
5
Script for total and pending members?
Where can I find the script snippet that displays the Total and Pending Member Counts for my fanlisting?
You can find that in the README file included in the zip file.
Total Members:
<?php include("config.php"); $query = "SELECT * FROM $table WHERE apr='y'"; $result = mysql_query($query); $num = mysql_num_rows($result); ?> <p>We have a total of <strong><?php echo $num; ?></strong> members!</p>Pending Members:
<?php include("config.php"); $query2 = "SELECT * FROM $table WHERE apr!='y'"; $result2 = mysql_query($query2); $num2 = mysql_num_rows($result2); ?> <p>We have a total of <strong><?php echo $num2; ?></strong> pending <?php if ($num2 == "1"){ ?>member<?php } else { ?>members<?php } ?>!</p>You only need to include config.php once, so if you’re using both of these snippets, make sure to delete the line that includes config.php in the second one.

June 3, 2004 |
By Sasha |
Filed under FAQ, PHPFanBase: Customize, Scripts