locations
Free IP Location Whois 2.0.2
Free PHP script for IP to country location based on Whois servers analysis. What Free IP Location Whois does : * Add an IP location & IP Whois request form for your visitors or for you on your website. * Visitors country php integration into your more>> Free PHP script for IP to country location based on Whois servers analysis. What Free IP Location Whois does : * Add an IP location & IP Whois request form for your visitors or for you on your website. * Visitors country php integration into your scripts : o Send your visitors country name to your php scripts. o Send the ISO2 code of your visitors country to your php scripts. o Show the flag of your visitors country into your pages. * Easy to install, one directory to upload. * Easy to customize, css, header, footer, easy to translate * Easy integration, add one include() and you will have new functions into your PHP scripts. * Optional security features : CAPTCHA, number of request by day limited,...<<less
GeoIP Country Location 1.01
This script uses MaxMind to determine the country of any IP address supplied -- up to a 99.5% accuracy. Currently, the script is setup to display the country code of any of your visitors. This may be customized to either redirect or display different more>> This script uses MaxMind to determine the country of any IP address supplied -- up to a 99.5% accuracy. Currently, the script is setup to display the country code of any of your visitors. This may be customized to either redirect or display different content depending on your users country of residence.<<less
Map-IP Free Geo Location Software 1.1
Map-IP plots the browsers location using Geo Location Databases. It finds the latitude and longitude coordinates of the IP address and plots it on a map of the world. Map-IP is very easy to set up on your server and has a very small footprint, the more>> Map-IP plots the browsers location using Geo Location Databases. It finds the latitude and longitude coordinates of the IP address and plots it on a map of the world. Map-IP is very easy to set up on your server and has a very small footprint, the full down load is only 60k. The only server requirement is PHP and optionally the GD library. Version 1.1 has fixes for Opera, a rewritten translation system, a partial Italian translation, the ability to manually change from CSS and GD mode in the preferences, UI improvements, and many bugfixes.<<less
Web server and user location 1.0
Use this simple code to get a map showing your visitor and your site location. Setup in 30 seconds more>> Use this simple code to get a map showing your visitor and your site location. Setup in 30 seconds<<less
FreeDealerLocator 2.0
A free way to direct customers to your physical locations based on the customers zip code. Easy to use, secure and customizable through the use of style sheets (CSS). more>> A free way to direct customers to your physical locations based on the customers zip code. Easy to use, secure and customizable through the use of style sheets (CSS).<<less
IP address locator 1.0
Free tool that shows the location of IP address, domain or hostname. It uses Maxmind GeoLite city database for the purpose of finding IP location) and Google maps API for creating the world map. more>> Free tool that shows the location of IP address, domain or hostname. It uses Maxmind GeoLite city database for the purpose of finding IP location) and Google maps API for creating the world map.<<less
PHP file upload protection. 1.1
With this simple function, you can check the authenticity of any file uploaded, it works by checking the file specified, for specific hex at specific locations, thus, much more safe than the usual protection of just checking the extension. more>> With this simple function, you can check the authenticity of any file uploaded, it works by checking the file specified, for specific hex at specific locations, thus, much more safe than the usual protection of just checking the extension. Includes: TAR, ZIP, BZ2, SWF, WMV, MP3, BMP, GIF, PNG, and JPEG, predefined.<<less
Google Map User Location Control ASP.NET 1.0.1
Twitter like - Google Map User Location Control ASP.NET - is intended for usage in community sites. Once user logs in he will appear on the map - his picture, username, address etc. more>> Twitter like - Google Map User Location Control ASP.NET - is intended for usage in community sites. Once user logs in he will appear on the map - his picture, username, address etc.<<less
URL Redirection using JavaScript.
Simple URL redirection made using JavaScript and the window.location() function. Also provided an example how to make URL redirection with time delay, using the setTimeout() function in Java Script. more>> Simple URL redirection made using JavaScript and the window.location() function. Also provided an example how to make URL redirection with time delay, using the setTimeout() function in Java Script.<<less
Cellular Traffic Calculation
This is a MATLAB GUI that will calculate cellular wireless traffic in a given area and draw suggested locations for every transmitting location more>>
You can also calculate the number of transmitters in each area.
Requirements: MATLAB 7.4 or higher
Download Tracker
Download Tracker will manage all your links in one place. Monitor number of clicks and details about each click (user?s ip, time of download, etc). Unlimited files per download to ensure there is an a more>> Download Tracker will manage all your links in one place. Monitor number of clicks and details about each click (user?s ip, time of download, etc). Unlimited files per download to ensure there is an available mirror, order mirrors the way you want, if your default mirror doesn?t exist it will go to the next available mirror. Force downloads of any file type (to prevent browser handling) or it can create regular hyperlinks. CAN BE FOR INTERNAL OR EXTERNAL FILES. File locations are held in MYSQL database so hackers won?t be able to force their downloads from your site. Hides download locations if you don?t want your users to know where files are coming from (helps prevent hot linking). Details can be displayed by external sources, so if you want a ?check for new version? in a desktop or web app you can do it, or if you want to display the count in your site along w/ the download. Our download pages and our version checking in our apps use it. MUCH MORE. Check out our site for more info.<<less
INSERTROWS
INSERTROWS - Insert rows into a matrix at specific locations more>> INSERTROWS provides you a powerful mathematical tool which is able to insert rows into a matrix at specific locations.
C = INSERTROWS(A,B,IND) inserts the rows of matrix B into the matrix A at the positions IND. Row k of matrix B will be inserted after position IND(k)in the matrix A. If A is a N-by-X matrix and B is a M-by-X matrix, C will be a (N M)-by-X matrix. IND can contain non-integers.
If B is a 1-by-N matrix, B will be inserted for each insertion position specified by IND. If IND is a single value, the whole matrix B will be inserted at that position. If B is a single value, B is expanded to a row vector. In all other cases, the number of elements in IND should be equal to the number of rows in B, and the number of columns, planes etc should be the same for both matrices A and B. If any of the inputs are empty, C will return A.
Examples:
% the size of A,B, and IND all match
C = insertrows(rand(5,2),zeros(2,2),[1.5 3])
% the row vector B is inserted twice
C = insertrows(ones(4,3),1:3,[1 Inf])
% matrix B is expanded to a row vector and inserted twice (as in 2)
C = insertrows(ones(5,3),999,[2 4])
% the whole matrix B is inserted once
C = insertrows(ones(5,3),zeros(2,3),2)
[C, RA, RB] = INSERTROWS(...) will return the row indices RA and RB for which C
corresponds to the rows of either A and B.
[c,ra,rb] = insertrows([1:4].,99,[0 3]) ;
c. % -> [99 1 2 3 99 4] ;
c(ra). % -> [1 2 3 4] ;
c(rb). % -> [99 99] ;
To insert columns, planes, etc., you can permute the inputs and ipermute the result.
A = ones(4,3) ; B = zeros(4,1) ;
C = insertrows(permute(A,[2 1]), permute(B,[2 1]),1) ;
C = ipermute(C,[2 1]) ;
See also PERMUTE, IPERMUTE, RESHAPE, CAT
Requirements:
- MATLAB Release: R13
Working With Time Zones in PHP
This tutorial explains how to handle converting times to different time zones using the DateTime and DateTimeZone classes provided by PHP 5.2.0+. It will show how to collect the time zone in the Area/Location format and how to use it for converting to more>> This tutorial explains how to handle converting times to different time zones using the DateTime and DateTimeZone classes provided by PHP 5.2.0+. It will show how to collect the time zone in the Area/Location format and how to use it for converting to and from that zone. This is useful for online applications that will be used by users in many locations.<<less
ZIPCodeWorld? Store Locator Live
Add a free US ZIP code or Canada postal code search locator for local business, organizational, branch locations, event locations and more to any web site in less than 10 minutes. The results show each locations distance from your customer and even more>> <<less
Get the location for any IP : Dhoondho IP Locator 3.02
Did you ever want to trace where your visitors come from? Offer Location based services to your Clients? Now with our FREE API you can: 1. Get the Country of any IP / Visitor 2. Get the City of any IP / Visitor 3. Get the Country Code of more>> Did you ever want to trace where your visitors come from? Offer Location based services to your Clients? Now with our FREE API you can: 1. Get the Country of any IP / Visitor 2. Get the City of any IP / Visitor 3. Get the Country Code of any IP / Visitor 4. Get the Country Flag of any IP / Visitor 5. Plot the IP Address / Visitor Location on the World Map<<less
License:Freeware