Free Web Analytics program
getclicky.com – I’m trying this program for web analytic info for my site
it’s free, just to need registration
you get info about visitors – from links/ from search engines
you can see the map with colored places from where visitors came
you can see on which pages visitors spend their time and how much time
Add comment January 25, 2010
PHP Lessons (2)
variables – $
<?php
$hello='Hello,';
echo "<br>";
$num1=’7′;
$num2=3;
$result=$num1+$num2;
// one line comment
echo "this class is" .$result;
/* multiple
* lines comments
*/
echo "<br>";
$a=3;
$a++; //$a=$a+1
echo $a;
echo "<br>";
++$a;
echo $a;
echo "<br>";
$b=4;
$a+=$b;
echo $a;
echo "<br>";
$hello.=’world’;
echo $hello;
//@include ‘mytest.php’;
//@require ‘mytest.php’;
//echo "after error text";
//$str=`dir c:\ `;
//echo "<br> <pre>" .$str. "</pre>";
echo "<br>";
$age=44;
if ($age>;120)
{
echo "RIP";
}
else {
echo "long live";
}
?>;
global variables
$_GET, $_POST, $_COOKIES
Add comment January 20, 2010
PHP Lessons (1)
For starting to learn PHP we need installed on our computer
- wamp server
- Eclipse PHP Development Tools (download from http://www.zend.com/en/community/pdt)
Settings:
click On Wamp server->php->php.ini
error_reporting = E_ALL & ~E_NOTICE & E_STRICT
eclipse
workspace C:\wamp\www
file -swich workspace
php – right click – reset
open perspective
window-prefernaces-general-workspace-other-encoding utf-8
window-prefernaces-web- css file – iso10646
window-prefernaces-web- html file – iso10646
php perspectie – file – new project -name
java script enable
right click on project- new- php file – hello.php
right click on the file – run as php web page
window- web browser – fire fox
Add comment January 10, 2010
Choice of Good Hosting in UK
The Benefits of Choosing Web Hosting Packages that Include Website TemplatesWith basic html knowledge, that most bloggers have – it can be difficult to develop a website or a blog that is appealing to the visitors. This is the reason that many web hosting UK services offer templates that can be easily applied to the blog.Most often, there are hundreds of templates that you can choose from – as well as even more, up to thousands more, that can be uploaded to the site through external sources and other templates that people have designed.Choosing a blog hosting services that includes these web hosting templates enables you to easily find the website template that suits the theme of your blog, with all of the widgets and extras in place, including listings of pages, posts and other information in the blog – as well as easy access to comments and other content.As an added bonus, you can choose from a variety of templates that can be used to customize your options when it comes to communications. You can choose templates that can enable Facebook, twitter and other social networking websites, as well as choosing from websites that can enable you to.
Add comment December 24, 2009
Communication Benefits
Every time, calling to my mom I use conference call and it’s no wonder why I choose the way. I guess most of you have appreciated already at this type of communication true value. I can add to my calling list other members of my family to converse all together. There is no denying that whether you are businessman, professional web master, students or teachers you need it as well.
Today a conference call services offer a wide range of conferencing solutions including conference calls, web conferencing, live video conferencing and more though which you can make free conference calls for business, corporate or personal use. Conference calls have been around with us for a long time now. What is the way that helps you to improve your interpersonal communication? The answer is obvious.
What are the ways through which one can improve interpersonal communication? Conference calling has become an important aspect of modern everyday life and business. It can be also used internally, within an organization. The major benefit I use the conference call is saving on both the cost of phone calls and travel costs, it makes your life easier – I use any phone, anywhere, at any time.
Add comment December 24, 2009
WordPress themes and number of outgoing links
I’ve just put attention that only one from all free templates WordPress offers has relative low number of outgoing links.
This theme named Blix by Sebastian Schmieg
It is two-column theme with widgets and a customizable header.
After choosing this theme number of outgoing links decreases at least on 10 -15 links.
Add comment December 19, 2009
Web dictionary (C)
| CashCheck | A cash-transaction reporting tool that provides a complete statement of cash transactions made to and from the customers. |
| CPA | Cost Per Acquisition,the cost for each customer acquired through an ad |
| CPC | Cost Per Click , the cost for each click on an ad |
| CRM | Customer Relation Management, CRM is a general term for the range of marketing activities company conducts in order to retain customers. |
| CSV | CSV Comma Separated Value, CSV lists of account numbers in a spreadsheet format. |
More important things:
restaurant equipment
canvas prints
leaflet printing
exercise bikes
Add comment December 12, 2009
Chek popularity of your site
Good toll to check page rank, alexa rank, google backlinks, yahoo backlinks, technorati lisning, whois data etc
popuri.us
Add comment December 2, 2009
Google event tracking script
New script for Google analytic tools allows to track clicking on the links on your site
Go to content->event tracking
you see stat for clicking on internal and external links
click on view all, after that on click and get list of clicks on links on the page where this code is installed
<script src=”jquery.google-analytics.js” type=”text/javascript”></script>
<script type=”text/javascript”>
$(document).ready(function() {
$.trackPage(‘UA-xxxxxxx-x’);
$(‘a’).track();
});
</script>
![]()
Add comment November 26, 2009
php on windows computer
Download and install http://www.wampserver.com/ (open source project, free to use)
Apache 2.2.11
PHP 5.3.0
MySQL 5.1.36
Phpmyadmin
size: 16Mo
– then you have a PHP webserver + mySQL database on your computer.
After installation you need to configure 2 small things:
-install php version 5.2.9-1 (click ‘get more’)

-Activate ‘rewrite module’ in Apache – modules (to have friendly url’s)

Add comment November 15, 2009