how to install and configure:
———————————————————————————-
http://www.php.net/downloads.php
http://itmanagement.earthweb.com/osrc/article.php/3689281
http://www.globalguideline.com
http://www.javascriptfreecode.com/
http://javaboutique.internet.com/
http://www.geocities.com/SiliconValley/Station/4320/
http://www.javascript.com/
http://www.javascriptsearch.com/
http://www.white-hat-web-design.co.uk/articles/php-captcha.php
Getting information from database and display on the screen
http://www.php.happycodings.com/
http://www.daniweb.com/forums/thread112526.html
http://www.javascripter.net/
http://www.the-art-of-web.com/php/
http://www.the-art-of-web.com/javascript/
http://www.programmerskit.com/
javascript :
http://tom.me.uk/scripting/dropdowns.html
redirect page:
http://www.getfreesofts.com/script/146/9850/Simple_Redirect.html
scroll up and down:
http://en.allexperts.com/q/Javascript-1520/fix-layer-position-2.htm
http://ww.smashits.com/player/ra/ondemand/raplayer.asp?16616
http://www.mag4you.com/english_mp3_songs/britney-spears.asp#download
page generation:
http://www.webmasterworld.com/forum21/4800.htm
PHP Functions Essential Reference:
http://www.phpdig.net/ref/
http://www.severnsolutions.co.uk/twblog/archive/2003/11/10/phpsessionmanage
http://www.phpdig.net/ref/rn56.html
http://www-eleves-isia.cma.fr/documentation/PhpDoc/index.html
http://www-eleves-isia.cma.fr/documentation/PhpDoc/language.variables.predefined.html
sunil.guru@gmail.com
www.srishtisoft.com
http://www.webscriptexpert.com/items/php/
http://www.onlamp.com/pub/a/onlamp/excerpt/mysqlckbk/index1.html
http://www.onlamp.com/pub/a/php/2004/08/26/PHPformhandling.html
http://www.trans4mind.com/personal_development/phpTutorial/sessionStart.htm
http://www.freewebmasterhelp.com/tutorials/cookies/2
http://www.phpreg.com/index.php?option=com_content&task=view&id=151&Itemid=25
mysql :
http://sql-info.de/mysql/examples/CREATE-TABLE-examples.html
http://wiki.forum.nokia.com/index.php/Database_use_with_PHP_and_mySQL
http://www.oreilly.com/catalog/mysqlspp/
http://www.webpronews.com/topnews/2003/09/09/creating-a-secure-php-login-script
http://htmlfixit.com/
http://www.webreference.com
PHP/MYSQL Configuration:
Contents
* 1 Desktop session management
* 2 Browser session management
* 3 Web server session management
———————————————————————————————————————————–
Variables-Predefined Variables, Server Variables, Global Variables.
———————————————————————————————————————————–
Predefined Variables: or PHP Superglobals:
————————————————–
$GLOBALS:
Contains a reference to every variable which is currently available within the global scope of the script. The keys of this array are the names of the global variables. $GLOBALS has existed since PHP 3.
$_SERVER:
Variables set by the web server or otherwise directly related to the execution environment of the current script. Analogous to the old $HTTP_SERVER_VARS array (which is still available, but deprecated).
$_GET:
Variables provided to the script via URL query string. Analogous to the old $HTTP_GET_VARS array (which is still available, but deprecated).
$_POST:
Variables provided to the script via HTTP POST. Analogous to the old $HTTP_POST_VARS array (which is still available, but deprecated).
$_COOKIE:
Variables provided to the script via HTTP cookies. Analogous to the old $HTTP_COOKIE_VARS array (which is still available, but deprecated).
$_FILES:
Variables provided to the script via HTTP post file uploads. Analogous to the old $HTTP_POST_FILES array (which is still available, but deprecated). See POST method uploads for more information.
$_ENV:
Variables provided to the script via the environment. Analogous to the old $HTTP_ENV_VARS array (which is still available, but deprecated).
$_REQUEST:
Variables provided to the script via the GET, POST, and COOKIE input mechanisms, and which therefore cannot be trusted. The presence and order of variable inclusion in this array is defined according to the PHP variables_order configuration directive. This array has no direct analogue in versions of PHP
$_SESSION :
Variables which are currently registered to a script’s session. Analogous to the old $HTTP_SESSION_VARS array (which is still available, but deprecated). See the Session handling functions section for more information.
Apache variables:
$GATEWAY_INTERFACE
What revision of the CGI specification the server is using; i.e. ‘CGI/1.1′.
$SERVER_NAME
The name of the server host under which the current script is executing. If the script is running on a virtual host, this will be the value defined for that virtual host.
$SERVER_SOFTWARE
Server identification string, given in the headers when responding to requests.
$SERVER_PROTOCOL
Name and revision of the information protocol via which the page was requested; i.e. ‘HTTP/1.0′;
$REQUEST_METHOD
Which request method was used to access the page; i.e. ‘GET’, ‘HEAD’, ‘POST’, ‘PUT’.
$QUERY_STRING
The query string, if any, via which the page was accessed.
$DOCUMENT_ROOT
The document root directory under which the current script is executing, as defined in the server’s configuration file.
$HTTP_ACCEPT
Contents of the Accept: header from the current request, if there is one.
$HTTP_ACCEPT_CHARSET
Contents of the Accept-Charset: header from the current request, if there is one. Example: ‘iso-8859-1,*,utf-8′.
$HTTP_ACCEPT_ENCODING
Contents of the Accept-Encoding: header from the current request, if there is one. Example: ‘gzip’.
$HTTP_ACCEPT_LANGUAGE
Contents of the Accept-Language: header from the current request, if there is one. Example: ‘en’.
$HTTP_CONNECTION
Contents of the Connection: header from the current request, if there is one. Example: ‘Keep-Alive’.
$HTTP_HOST
Contents of the Host: header from the current request, if there is one.
$HTTP_REFERER
The address of the page (if any) which referred the browser to the current page. This is set by the user’s browser; not all browsers will set this.
$HTTP_USER_AGENT
Contents of the User_Agent: header from the current request, if there is one. This is a string denoting the browser software being used to view the current page; i.e. Mozilla/4.5 [en] (X11; U; Linux 2.2.9 i586). Among other things, you can use this value with get_browser() to tailor your page’s functionality to the capabilities of the user’s browser.
$REMOTE_ADDR
The IP address from which the user is viewing the current page.
$REMOTE_PORT
The port being used on the user’s machine to communicate with the web server.
$SCRIPT_FILENAME
The absolute pathname of the currently executing script.
$SERVER_ADMIN
The value given to the SERVER_ADMIN (for Apache) directive in the web server configuration file. If the script is running on a virtual host, this will be the value defined for that virtual host.
$SERVER_PORT
The port on the server machine being used by the web server for communication. For default setups, this will be ‘80′; using SSL, for instance, will change this to whatever your defined secure HTTP port is.
$SERVER_SIGNATURE
String containing the server version and virtual host name which are added to server-generated pages, if enabled.
$PATH_TRANSLATED
Filesystem- (not document root-) based path to the current script, after the server has done any virtual-to-real mapping.
$SCRIPT_NAME
Contains the current script’s path. This is useful for pages which need to point to themselves.
$REQUEST_URI
The URI which was given in order to access this page; for instance, ‘/index.html’.
———————————————————————————————————————————–
Functions-Array Functions, String Functions:
———————————————————————————————————————————–
Types of Errors: [warning] [notices] [fatal errors.]
———————————————————————————————————————————–
Session Management
———————————————————————————————————————————–
Php: Opensource Tools:
joomla [cms]
os-commerce [shopping cart]
moodle [learning site]
drupal
——————————————————-
http://scripts.franciscocharrua.com/mysql-login.php
php:
snippets:
http://www.scriptsearch.com/PHP/
http://www.jonasjohn.de/snippets/php/
http://php.snippetdb.com/
http://www.spoono.com/php/snippets/
http://www.joomlaresource.com/Webmaster_Tutorials/PHP_Tutorials/
http://www.activewidgets.com/javascript.forum.12393.22/simple-php-mysql-example.html
http://www.webgeekworld.com/index.php?id_category=37&action=descend
ecommerce:
1. Adding, modifying, deleting products to the database from the admin console
2. Viewing the latest orders from the database, viewing past orders
3. Displaying the products online
4. Maintaining a shopping cart (add, delete, update)
5. User registration and updation
6. Passing the amount to the gateway
- Contact -
VINAYAK INFOTECH
#80/96 Chamiers Road, Teynampet, Chennai
Tamil Nadu, South India
Phone +91 44 2435 9585
Fax
+91 44 4211 2084