This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Posts Tagged ‘scripts’


Page 2 of 1212345678910NextLast »

Send Email to Multiple Persons using php

You can send email to mutiple persons at one shot using php. When you submit, this file will be sent an email immediately to the target emails from your database. First create a DB Database “mail” and table “email_list” with... (Continue reading)

Tagged with:     

Simple Visitor Counter Using php

This tutorial require 1 PHP file and 1 table of mySQL database. 1. counter.php 2. Database “mypage” and table “counter” with 1 fields: visitor(Int, 11). You need to insert a first one record with “0″. Counter.php Source Code < ?php... (Continue reading)

Tagged with:         

Export MySQL to CSV (Excel) using php

You can export your MySQL database to .csv file format (Microsoft Excel file) easily using php. This tutorial require 1 PHP file and 1 table of mySQL database. 1. exportcsv.php 2. The table is with 2 fields: id(auto_increment), name(varchar, 50)... (Continue reading)

Tagged with:         

ScriptAlias and Alias in httpd.conf at a glance

Here i am gonna quickly explain you the difference between ScriptAlias and Alias example: ScriptAlias /cgi-bin / www/cgi-bin/ A request for http://mywebpage.com/cgi-bin/foobar would cause the server to run the script /www/cgi-bin/foobar. This configuration is essentially equivalent to: Alias /cgi-bin/ /www/cgi-bin/... (Continue reading)

Tagged with:         

Javascript Popup Chromeless Window

Here’s a simple but flexible javascript popup function. This effect is known as a chromeless window. This usually means that the window is resized and the browser features (nav buttons, address field, scrollbars, resize handle, and favorites) are hidden. Javascript... (Continue reading)

Tagged with:     

Page 2 of 1212345678910NextLast »