Friday, June 24, 2016

Web Directory PHP Script

NinjaLinks is a web directory script designed to help you organise lists of links in categories and sub-categories. It utilises PHP, and MySQL. NinjaLinks is easy to edit, full-featured and secure.

  • complete category management
  • link management including pending links
  • allows optional link buttons with submitted links
  • allows optional link description
  • tree like system allows viewing by category
  • optional notification emails for link owners
  • pagination of links in admin panel and public directory
  • secure button uploads
  • spam protection and data validation to prevent malicious input
  • contact form
  • optional nofollow attribute for links
  • hits out counter
  • update form for users to manage own links

Download Web Directory PHP Script

Thursday, June 23, 2016

Free PHP Theme

Free php theme that is SEO friendly and supports ADS, databases, social media sites and is very customizable.

Download this Free SEO friendly Theme

Social Dating Website PHP Script Start Your Own Social Dating Site for Free

The pH7 Dating CMS is a PHP CMS with an architecture MVC (Model-View-Controller).
It is designed with the KISS principle in mind, and the entire source code can be read and understood in minutes, PDO (PHP Data Objects) abstraction allows choice of databases and is a principle of CMS developement DRY (Dont Repeat Yourself) aims at reducing repetition of information of all kinds (Not duplicate code).

It also wants to fast, low resource-intensive, extremely powerful and very secure.

pH7 Social Dating Softwares Features

  •     Easy, fast and intelligent
  •     Our software is very fast, intelligent, secure, and it has a spam detect system.
  •     Very Fun
  •     Our software is very fun for you and yours visitor!
  •     Dating Service & Community Website
  •     pH7 Social Dating is perfect for the dating site and social community portal.
  •     Multi Theme and many personalizable
  •     Build a unique theme and record time with the architecture of our CMS. 
Download pH7 Social Dating PHP Script

Creating a file based log system

If we have a website we would certainly want to know the impressions of our website visitors. 

In addition to knowing about information of visitors, a log file is also useful to help analyse the security.

I will go directly to explain the log system file in PHP script: 

<?php 
// checking the bowsers type 
$agent = $_SERVER [HTTP_USER_AGENT]; 

// * checking where the script is executed from -- GET (URL) 
$uri = $_SERVER [REQUEST_URI]; 

// * checking visitors IP 
$ip = $_SERVER [REMOTE_ADDR]; 

/ * checking where the script is referred from 
$ref = $_SERVER [HTTP_REFERER]; 

// * checking visitors proxy
$original = $_SERVER [HTTP_X_FORWARDED_FOR]; 

// * checking visitors connection 
$via = $_SERVER [HTTP_VIA]; 

// * variable date 
$dtime = date (r); 

// * note if  visitors use transparent Proxy 
// * Then the $_SERVER [HTTP_X_FORWARDED_FOR] will display the visitors IP 
// * otherwise $_SERVER [ REMOTE_ADDR] will display the Proxy 
// * For clear about Proxy i will explain in another tutorial 

// * This is a description of variable entry_line: 
$entry_line = "Time: $dtime | Original IP: $ip | Browser: $agent | URL: $uri | referrer: $ref | Proxy: $original | Connection: $via 
";   // * <- Attention! This must be a new line or you press enter to create a new line 

/ * "fopen ()" function for opening files, "a" is the most important.!, 
/ * This works if the file "trace.txt" does not exist in the server then PHP will create 
$fp = fopen ( "trace.txt", "a"); 

/ /* "fputs ()" function for writing into the log file 
fputs ($fp, $entry_line); 

// * "fclose ()" function to close the file 
fclose ($fp); 

?> 

This file based log system using php function is pretty useful instead of using mysql connection

DRBPoll PHP Poll Script

DRBPoll is a free and simple PHP poll script that doesnt require a database. It allows you to put a poll form on virtually any page on your web site. The results page displays a colored bar graph of the votes. The look-and-feel of the poll form and results page can be customized using a standard CSS file. Data is stored in flat files, therefore no database is required.

Features

  • Quick and easy to install.
  • The poll data is stored in flat files, so no database is required.
  • Prevents the same IP address from voting on a poll more than once.
  • XHTML syntax compliant, and compatible with both IE and Firefox.
  • Colors and fonts are defined in an ordinary, customizable CSS file.
  • The script is highly configurable and customizable.
  • Multiple polls on the your site can utilize the same instance of the script.
  • Poll options can be rendered as either radio buttons or a combobox.
  • Includes an example page demonstrating how to add a poll to virtually any PHP page on your website.

 Download PHP Poll Script