J2EE INTERVIEW QUESTIONS 1. What makes J2EE suitable for distributed multitiered Applications? - The J2EE platform uses a multitiered distributed application model. Application logic is divided into components according to function, and the various application components that make up a... (Continue reading)
If we add cursor: hand on our CSS then this will not work on mozilla / firefox. It will only work on IE [Internet Explorer]. Why? The reason is IE supports the keyword hand other browsers does not. Fix? To... (Continue reading)
This is a very simple script to get the IP address of your visitor using php < ?php $ip = $_SERVER['REMOTE_ADDR']; echo "Your IP address is ".$ip; ?> VN:F [1.5.7_846]please wait...Rating: 0.0/10 (0 votes cast)VN:F [1.5.7_846]Rating: 0 (from 0 votes)... (Continue reading)
Its very easy to get IP address using javascript and SSI, Javscript is a client side script and it doesnt have the capablity of finding out the ip address by itself so we are using SSI along with javascript. Use... (Continue reading)
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)