InfoDump
LinksAndMore.


InfoID:
jcookies
Info:
http://www.quirksmode.org/js/cookies.html

InfoID:
show/hide
Info:
http://www.astahost.com/info.php/hidingshowing-text-click_t9049.html

InfoID: hovertips
Info:
http://www.dave-cohen.com/node/1186

InfoID: wifi
Info:
omnipeek, commview , airmagnet

InfoID:
javascript to php
Info:
http://www.geekpedia.com/tutorial145_PHP-and-Javascript-Dynamic-update-with-MySQL.html

InfoID: info
Info:
http://www.devshed.com/c/a/PHP/PHP-and-JavaScript-Pooling-Your-Resources/3/

InfoID: apache rewrite
Info:
http://snippets.dzone.com/posts/show/6206

Source: Apache 2 on Ubuntu [drupal.org]

You no longer have to do the:
LoadModule rewrite_module modules/mod_rewrite.so
AddModule mod_rewrite.c

It's now as easy as:

sudo a2enmod rewrite



To disable this module it's just:

sudo a2dismod rewrite




output:
Module rewrite installed; run /etc/init.d/apache2 force-reload to enable.

Source: How to enable mod_rewrite in Ubuntu server?? [ubuntuforums.org]


First, I changed the following line in /etc/apache2/sites-enabled/000-default

DocumentRoot /var/www/

Options FollowSymLinks
AllowOverride all


Options FollowSymLinks
AllowOverride all
Order allow,deny
allow from all




And then, I placed a .htaccess file in /var/www with the following contents

$ cat .htaccess
RewriteEngine On
RewriteRule ^/(.*) http://localhost:8080/$1 [P]

InfoID: vote chart
Info:
http://php.about.com/od/finishedphp1/ss/simple_poll_php.htm