Hi,
To get the ip address of visitor you need to use a server side script, for example with php. Look on the net for "get ip php".
You cannot hide the html code.
Hi,
If you know html and css, try learn PHP and Javascript. With these languages you can create profesional and dinamically web sites.
You can find courses with free lessons, tutorials and e-books...
$dbc=mysql_connect($db_hostname, $db_username, $db_pass) or die ('I am unable to connect to the database because of: ' . mysql_error()); //(Line 50)
echo...
Hi,
I changed the website URL from http://www to URL without "www", using also 301 redirect in htaccess.
Now, all the +1 Google which was for the name with www disaperred.
It is not such a big...
Hi,
I found that Google introduced a new tool for Webmasters, "Disavow Links", that enables you to disavow links to your site. If you've been notified of a manual spam action based on "unnatural...
Hi,
Remove the simple quotes from the name of the table. Use these character `...` (near key 1 on the keyboard), or simple, just the name. The same for column name.
Hi,
Does changing the host too frequently affect the ranking of the web site in search engines.
For example, if i change the hosting company 3 times in 2 months, does it affect the Page Rank?...
Hi,
In the script in "post.php" there is no code which to save the ratings. It just gets data, and return it in JSON format.
It think it is needed more code which saves data into a file, or...
Hi,
Does it matter the location of the hosting server.
For example, if I have a wensite in english, but the hosting server is in Spain, and I want target users from UK, USA, Canada; is it better in...
Hi,
The file "post.php" should contain the php script that registers the ratings. In this case, if it is empty, you can ask the person who made the script.
Or try another script, for example this:...
Hi,
How can I configure Apache 2.2 server to have PHP 5.3 in all virtual hosts, except one virtual host in which to run PHP 4.4? I have all the php and .dll files.
Hi,
Try replace:
var ele=document.frames[frame1].document.getElementById(id1);
With this:
var ele=document.getElementById(iframe_id).contentWindow.document.getElementById(id1);
- And use an ID...