Home

[December 10, 2008]

Uncover Terrific Broadband Deals for your House

Filed under: WWW — @ 4:44 pm

Broad-band can often loosely be stated as incredible fast worldwide web & has all but outstripped slow dial-up www access. old fashion dial- up connections, which are the very first systems to provide housing with internet access via a dial up modem, use all of the available land line and regularly run at only thirty three kilobits per second. Broadband technology, that uses ADSL ,also known as Asymmetric Digital Subscriber Line, technology via usual copper phone lines, is capable to provide at least twice that dial up speed which is wonderful and as if this wasn’t enough it will traditionally not produce any trouble to the land line.

Broad band has become ever more reasonably priced and available over the past 4.5 years or so & 2 currently tried by the majority of flat internet consumers in the country. There are a huge collection of providers who nowadays offer super fast broadband packages, each and every one supplying numerous priced services with countless advantages. One of the big league present focus points for Super quick broad-band is its speed with customers now becoming gradually more interested in getting the greatest connection possible as online games, music and videos turned out to be even more & more attractive and widely attainable on the internet. The dial up modem speed of a broadband internet connection depends entirely on a number of things, the most vital being how near the Flat is the to the nearest land exchange box & the quality of the copper cable that lies between the box & the home.

One of the ways High speed broadband dial up speed can be vastly enhanced is with the use of fibre optic cables, 2 do not suffer from dial up speed reduction over small distances. a diverse number of other countries in the world have extensive fibre optic networks and some, like Japan and South Korea, are providing Super fast broadband top speeds of up to 100mbps this is really brilliant The United Kingdom. is keen to bring itself in line with these countries and people might well be delighted to know that British Telecom just released plans to provide a generous fibre optic network for the rest of the country, at a cost of 1.5 billion pounds, reaching up to 10 million houses by 2012 & providing top speeds of up to 100mbps in most locations, with an average of 40-50mbps. Get some help from broadband deals and find the best price you.

[May 28, 2008]

Contracts with Web Site Designers and Hosting Companies

Filed under: WWW — @ 7:47 pm

There are many aspects to website development agreement, particularly if there are to be on-going things for the designer to do once the site has been set up. The core issues that should be considered are set out as follows…

Functional Specification
The Functional Spec defines what the software house is required to deliver. Approproate provisions should be built into the contract to ensure that the software developer has promised to deliver - the functional specification should delinate this work clearly. This naturally implies that the specification should be in writing - it is highly desirable to have a detailed written specification for your website agreed between you and the designer, so that everyone knows where they stand from the beginning. This makes sure that the designer knows what he has to do for his fees, particularly if they are fixed. You also need to consider what items may be extras and how much they will cost.

Registration of Domain Names
Ensure that the web designer is obliged to register the domain name (if he/she is doing so) in your name, not his own name. Also ensure that you are not merely hiring the name from the designer.

Full Title Guarantee - Warranty
Ensure that the contract includes a warranty by the designer that all content he/she supplies is free of third party intellectual property rights and that he will indemnify you on a “full indemnity basis” against any costs, claims and liabilities arising from breach of that warranty.

Assignment of Copyright
Try and make sure that you get copyright in the site. It is reasonable for the designer normally to insist on payment before copyright is acquired. On larger projects you might like to include a provision whereby the copyright in material produced up to specific agreed milestones passes to you once the invoice for that particular milestone has been paid. This way you do not have a total loss situation if you fall out with the designer during the contract.

System and Software Performance and Legal Requirements
Where there are particular legal requirements for your site, make sure that the designer understands these and make sure also that they are obliged to guarantee that whatever they have to do will work legally. You should not expect the designer to advise you or guarantee legal compliance but you should expect any specific instructions you give on that subject (having first consulted with your solicitor on the subject) to be followed and for that work to be guaranteed. This might include such matters as preventing orders being processed without the customer first accepting your terms of business using a pop-up window.

Maintenance Obligations
Where there are on-going maintenance obligations on your designer, you need similar provisions regarding further developments of the site (e.g. regarding copyright, etc). Where they are also hosting your site you need to have warranties regarding security of information when taken from site visitors and also when it is stored by the hosting company and also when it is onwardly transmitted to your own servers/PC. You will also want some kind of service standard agreed for downtime (if they cannot guarantee their services are up at least 97% of the time in any given month you should probably look elsewhere) and response to requests for support and for handling emergencies.

http://www.kaltons.co.uk

Kaltons Solicitors

[May 25, 2008]

The Width and Resolution Problem

Filed under: WWW — @ 2:31 pm

There is a problem that has plagued the web ever since graphical
designs for web pages started to become common - and yet it’s a
problem that’s never been solved. You see, different sized
monitors can handle different widths of page, and yet HTML
doesn’t really let you take width into consideration when you’re
designing.

There are two general width and height style properties that can
be used to size any page element. The width property gives the
width of an element in pixels or as a percentage of the page
width. The height property sets its height in pixels or as a
percentage of page height. Why is this such a problem? Well, let
me explain.

What is Resolution?

Before we can get to the problem, you need to know what a screen
resolution is. To put it simply, your resolution is the number
of pixels that can be displayed across your monitor,
horizontally and vertically. For example, at 640×480 resolution
(the lowest anyone still uses), your screen is 640 pixels wide
by 480 pixels high.

Most monitors can handle more than one resolution, and will give
you a choice between them. Typically, there will be a lower
resolution that fits less pixels on the screen but makes them
look bigger, and a higher one that fits more but makes
everything look small. The default is usually somewhere in the
middle.

To check the resolution you’re using now, right click on your
desktop and choose Properties. Now go to the Settings tab and
look at the screen resolution section. On most computers, there
will be up to four settings to choose from: 640×480, 800×600,
1024×768 and 1280×1024. It’s worth changing your resolution a
few times and going to some web pages, to get an idea of how
much width each setting gives you.

Now, you have to realise that the maximum width of your website,
in pixels, will be the lowest width you expect your site’s
visitors to be using. In almost all cases, this is 800×600: the
640×480 users are now a small enough minority to mostly ignore,
as they’ll be used to sites displaying incorrectly. At 800×600
and up, though, you should test your site to make sure it looks
good.

The Price of Failure.

If you don’t test your site correctly, then various things will
go wrong. At resolutions lower than the one you designed the
site for, visitors may see horizontal scrollbars. If you fix the
site’s width too low, though, visitors using higher resolutions
may just see a thin strip of your website in the middle of their
screen.

Possible Solutions.

The most popular solution to the resolution problem is to just
design as if everyone was using 800×600 - after all, people with
big monitors can just make their browser windows smaller. To
make a fixed width design, simply set the CSS width of your body
tag to the width you want in pixels (so for 800×600, width:
800px). If you take this approach, you will probably want to set
the CSS margins to auto, as this will put your fixed-width page
in the centre of larger screens - if you leave the margins
alone, then your page will appear on the far left of the web
browser at high resolutions, which is common to see but still
looks bad.

Of course, the more complicated but better way of doing things
is to make sure that your design will work just as well no
matter how wide the browser is, because it stretches to fit.
These kinds of designs are known as ‘elastic’. This can be
difficult, but it’s doable, especially for relatively simple
designs. If your design has three columns, for example, you can
make the left and right columns fixed-width but leave the middle
column to take up all the remaining width.

The biggest concern with elastic designs tends to be the
graphics: if you have a fixed-width header, how can you adjust
your site for any possible width? In most cases, the solution is
to make your header an image that floats over a background
continuing it. For example, you might use an image of navigation
text floating over a line - you can then continue that line as
the background image, to avoid it suddenly appearing to stop if
the viewer’s resolution is wider than your navigation images.
CSS gives you a lot of power to create illusions like this: make
good use of it.

[May 22, 2008]

How To Give Your Business Credibility

Filed under: WWW — @ 8:06 pm

Let’s face it. Buying products and services from the Internet can be a bit intimidating.

You may have no idea where the online merchant is located. You may not know how safe your personal and credit card information will be.

You may be unsure if you’ll even get the product or what to do if the product is broken when it arrives at your door.

These types of concerns are what you are up against when you sell products from a website.

Here some tips to build credibility with potential customers.

1. Include all your contact information on your homepage. Your phone and fax numbers, e-mail address, etc. List the hours you’re available to take customers’ phone calls.

2. Offer a money-back guarantee. This is a must, especially if you’re selling higher price items. Mention your guarantee at least a couple of times in your copy.

The more details you give about your guarantee the more comfortable your prospect will feel. Your guarantee should be valid for at least 30 days after the purchase and it’s best to have a “no-questions-asked” return policy.

Be prompt in refunding the customer’s money

3. Tell your site visitors how their credit card and personal information will be protected if they buy from you.

Do you use a secure,encrypted server to process their transaction? Tell them. I have this info spelled out right below the “Buy Now” button on my website.

If you use a online credit card processing company like PayPal, be sure to include the credit card buyer protection policy and merchant verification process. People want to know how they’ll be protected against credit card fraud.

My credit card processing company, PaySystems (http://www.revecom.com) has a 100% guarantee against credit card fraud. Customers can click on hyperlink to read the guarantee before they actually fill out any credit card and personal information.

4. Use testimonials from satisfied customers. Nothing helps sell a product like a happy buyer. The more detailed the testimonial the better. Be sure to get your customer’s permission before you quote him or her in your marketing material.

Always use the customer’s first and last name, company name and title (if applicable) and their location.

I think you’re less likely to believe a testimonial if it’s just signed “J. Doe” instead of “John Doe, President, XYZ Company, Houston, Texas.”

5. List your credentials or experience on your website or in your ezine. Again, the key is the more a customer knows about who they are dealing with, the more assured they going to feel doing business with you.

By putting these suggestions into action, you’re bound to have a happy group of customers. And good “word-of-mouth” is the cheapest, and most effective form of advertising.

About The Author

Dave Coyne is a marketing consultant and information publisher. Get his FREE Report: “How to Run A Home Based Business And Never Create A Product, Write An Ad, Or Talk To Anyone.” Send an email with REF006 in the subject line to dcinfobiz@GetResponse.com

[May 14, 2008]

Introduction To Regular Expressions In PHP

Filed under: WWW — @ 12:27 pm

In Linux and Unix, the syntax that is commonly used by many applications for specifying text patterns is known as regular expressions or in short form - regex. Regex is a very powerful technique to describe patterns and many programs use them to describe sequences of characters to be matched. Search programs such as ‘grep’ rely heavily on regex. Basically regex forms the core in the linux world. Many scripting languages such as perl, ruby, php…etc has build in regex functions as well. So you can see, learning regular expression is important because they are used alot in many places and probably more so in the future.

Regex can be scary at first but if you can get the basics, it is really not too hard to understand. In this article, we are going to look at how regex comes into the picture when writing php applications.

To do a quick summary so far, a regular expression is a sequence of literal characters, wildcards, modifiers and anchors.

Literal Characters

Literal characters are letters, digits and special characters that match only themselves. Examples are abc, 123, ~@ and so on (some characters are reserved though).

- An inclusion range [m-n] matches one of any character included in the range from m to n.

Example ‘[a-z]’ will match any alpha character that falls within the a to z range.

- An exclusion range [^m-n] matches one of any character not included in the range from m to n. Example ‘[^0-9]’ will match any non-digit character.

- A period “.” matches any character. It is also known as the wildcard. Example ‘a.c’ will match ‘aec’, ‘acc’, ‘a@a’ and so on.

- The escape character ” enable interpretation of special characters. Example ‘a.c’ will match ‘ac’ only. Remember that ‘.’ is a reserved character to represent a wildcard? Therefore to match a period, ie ‘.’, we need to escape it like so ‘.’

- The expression [:alnum:] will match all alpha-numeric characters. It is a shortcut to [A-Za-z0-9]. As you can see, it is not really a shortcut. The expression [:alnum:] might be easier to remember for some people.

- The expression [:alpha:] will match all alpha characters. It is a shortcut to [A-Za-z].

- The expression [:blank:] will match a space or tab.

- The expression [:digit:] will match a numeric digit. It is a shortcut to [0-9].

- The expression [:lower:] will match all lowercase letters. It is a shortcut to [a-z].

- The expression [:upper:] will match all uppercase letters. It is a shortcut to [A-Z].

- The expression [:punct:] will match all printable characters, excluding spaces and alphanumerics.

- The expression [:space:] will match a whitespace character.

Modifiers

A modifier alters the meaning of the immediately preceding pattern character.

- An asterisk (’*') matches 0 or more of the preceding term. Example ‘a*’ will match ”, ‘a’, ‘aa’, ‘aaaaa’ and so on (Note the use of ”. It simply means that the expression matches nothing as well).

- A question mark (’?') matches 0 or 1 of the preceding term. Example ‘a?’ will match ” and ‘a’ only.

- A plus sign (’+') matches 1 or more of the preceding term. Example ‘a+’ will match ‘a’, ‘aaaaaaa’ and so on. It will not match ”.

- {m,n} matches between m and n occurences of the preceding term. Example ‘a{1,3}’ will match ‘a’, ‘aa’ and ‘aaa’ only.

- {n} matches exactly n occurences of the preceding term. Example ‘a{2}’ will match ‘aa’ only.

Anchors

Anchors establish the context for the pattern such as “the beginning of a word” or “end of word”.

- The pike ‘^’ marks the beginning of a line. Example ‘^http’ will match any new line that starts with ‘http’.

- The dollar sign ‘$’ marks the end of a line. Example ‘after$’ will match any line that ends with ‘after’. (Variables in php starts with $. Try not to confuse with it).

Grouping

Grouping ‘( )’ allows modifiers to apply to groups of regex specifiers instead of only the immediately proceding specifier. Example ‘( aa | bb )’ will match either ‘aa’ or ‘bb’

Enough of boring stuff, it is time to put what the theory of regex into good use.

PHP Implementation

There are 2 main variants of regex, Perl-compatible regex (PCRE) and POSIX-Extended. PHP offers quite alot of functions to implement these 2 types of regex. In PHP, the most commonly used PCRE function is ‘preg_match’ and in POSIX-extended regex, ‘ereg’. Both syntax are slightly different but equally powerful. The preference to use ‘preg_match’ or ‘ereg’ is entirely up to individual although Zend suggested that preg_match is slightly faster. I prefer to use ‘eregi’ simply because of my background in linux administration.

Example 1: Matching United States 5 or 9 digit zip codes

Zip codes in USA have the following format ##### or #####-#### where # is a digit. If you want to verify the zip code submitted say from an online form, you will need to use regex somewhere in your script to verify it. The matching POSIX-extended regex pattern will be:

[[:digit:]]{5}(-[[:digit:]]{4})?

Confused? Wait, let me explain why. This regex is split up into 2 parts: [[:digit:]]{5} and (-[[:digit:]]{4})?.

First Part: ‘[[:digit:]]’ means the digit range and {5} means that the digit must occur 5 times.

Second Part: The bracket ‘( )’ groups the ‘-[[:digit:]]{4}’ together and the ‘?’ means the expression ‘(-[[:digit:]]{4})’ can either occur 0 or 1 time.

To implement the regex in PHP, we use the following code:

$zipCodes = ‘xxxxx-xxxx’;

$pattern = ‘[[:digit:]]{5}(-[[:digit:]]{4})?’;

if (ereg($pattern,$zipCodes)) {

echo “matched found “;

}

else {

echo “match not found”;

}

Example 2: Matching Dates

Say we want to verify the dates entered by the user. If we only accept dates like “YYYY-MM-DD” or “YYYY-M-D”, the regex pattern will be

[0-9]{4}(-[0-9]{1,2})+

The ‘+’ behind the term (-[0-9]{1,2}) means that the term must occur at least once. Note that I can also rewrite the regex as:

[[:digit:]]{4}(-[[:digit:]]{1,2})+

or

[0-9]{4}-[0-9]{1,2}-[0-9]{1,2}

As you can see, there can be many solutions to a problem…

Conclusion

Regex may be hard to digest at first but the logic is simple if you are able to practice more. Learning regex is as important as learning PHP. More examples can be seen at web-developer.sitecritic.net. Good luck.

Bernard Peh is a great passioner of web technologies and one of the co-founders of Sitecritic.net Site Reviews. He works with experienced web designers and developers for more than 5 years, developing and designing commercial and non-commercial websites. During his free time, he does website reviews, freelance SEO and PHP work. Visit his blog at Melbourne PHP

[May 12, 2008]

Salehoo :Salehoo Wholesale Electronics

Filed under: Internet Product Resources, Marketers Den, WWW — @ 4:10 am

Salehoo: Wholesale Knockoff Distributors In New York
One thing that you want is another scam that is just going to run with your money. Salehoo is able to offer the largest database on all sorts of places for your to get what you need for your business, and find it fast. There is no risk of a fake or a scam. One of the best things that I like is that there are reviews from other members on the suppliers. So, if the supplier has a bad reputation, you will know about it. You will also have a message board that you can post questions and get great answers. I love the ease and confidence that I have when using Salehoo. Salehoo is one of the best selling products on Clickbank, so learn all about Salehoo wholesalers.

Believe it or not items can go missing while in storage causing massive disruption for you which is the real benefit of Salehoo dropshippers. I am sure you would agree with me that it is profitable for you to learn how to buy wholesale products at below wholesale prices and also the Salehoo Suppliers. The Salehoo website provides access to quality high demand products from popular retail categories such as clothing footwear computers furniture consumer electronics and home appliances

Salehoo Men’S Cologne Wholesale Pricelist:
The demand for the various fast moving products from a cross section of internet marketing community has triggered the birth of many whole sale distribution companies offering products at varying and competitive discounts to be resold to the online consumers. Ebay powersellers trust Salehoo dropshippers and Salehoo prices.

It costs $100 (I’ll just add it’s currently $67 but this is only a special offer) to join and within 10 day’s of being a member I’d made $450! It’s also a lifetime membership you get which makes it so much better than the monthly fee sites as you pay that once and that’s it you can use it for the rest of your life so it’s a well worthwhile investment, so try to join the Salehoo forums. One of the biggest concerns many sellers have is the legitimacy of their supplier, which will be the Salehoo customers. See Salehoo Review.

[April 17, 2008]

Alternative to Web Site Templates and Design Software

Filed under: WWW — @ 6:08 pm

Before I discovered the concept of Web site templates, I felt woefully
inadequate to build my own site. It was the old “catch-22″ where I didn’t
have the money to pay to have a site built, I needed a site to make the
money to have a professional site, and without the knowledge of how to
build a site, I had no hope of getting a site.

But even templates took some degree of technical knowledge. I could
get a reasonably priced site for between $40-$75 dollars generally
speaking, but I had to download, mess with it and find a hosting site,
domain name, learn FTP, then upload every change. Ugh! However, I
heard about a new online resource where I no longer have to hassle
with any of that! So I gave it a try…

(Can you see me smiling? No? Well, imagine it because I am!) I found
QuickSites to be a simple, affordable way for ANYONE to have a
professional, quality Web site.

QuickSites are designed to allow anyone on any budget, with any
technical skill level (even no technical skill level!) to have their own
quality Web site. To build a QuickSite, you don’t need any knowledge of
HTML, CSS, JavaScript, CGI or Plug-ins. Really, if you can use e-mail or
a word processor you can use QuickSites. Their live demo is a great
concept, too. I had to sign up and I’m now building my own site,
WritersContent.

You can try their demo at http://quicksites.pixelmation.com. Use the
demo log-in information provided to get full, free access. I was very
happy to see it is set up to literally be a “click, type and save” process,
which gives me more time for my writing and marketing focus. Plus,
they’re offering Domain name, WebMail, visitor traffic reporting and 24/7
access.

I personally really enjoy this easy new way to build my own new site. It
just might be a great alternative for you, too. Definitely worth a peek
anyway.

Cherie’ Davidson has been working as a Web copywriter, content editor
and Web Reviewer for several years through her own business,
Suitable Words (http://www.suitablewords.com), where she provides site development and online writing services.

[April 6, 2008]

How To Make An Excellent Investment In Your Web Site Design

Filed under: WWW — @ 7:21 pm

A lot of online entrepreneurs are under the impression that
they have to do everything themselves and be everything to
anybody. They want to do it all. The want to be the
inventor, the creator, the author, the accountant, the
graphic designer, the web designer, the copywriter, the
tech guy, etc. This is very inefficient.

Do only the things that you do well and then you pay
someone else to do the things you aren’t good at or take a
long time for you to do. Other than saving money, there is
no reason that you should even try to do everything
yourself. There is a strong relationship between time and
money. That is that time is money.

Once you understand and appreciate that you will be more
efficient and less scared to spend a little money to get
things done fast and well. Even if it means freeing up a
significant amount of time. Who you are is communicated
through your website. There was another harmful myth
circulated amongst internet marketers that web design
doesn’t matter as long as the sales copy is good.

This myth sprung from the philosophy that a site should be
stripped down to it’s bare essentials so that there is
nothing to distract or confuse the visitor. That is true.
But then someone took it a step further and said that web
design doesn’t matter at all - only the sales copy. That is
not true. Your website should look good, professional,
classy, appealing, etc.

Online, surfers judge you by the quality of your site
design. They judge your credibility according to how
professional your website looks. They judge your sincerity
by how “classy” and “not cheesy” your website is. They
assume your product’s quality and the quality of your
website are linked. And why shouldn’t they? Your website is
usually 100% of the experience they have with you.

They haven’t met you in person, they haven’t talked to you
on the phone, they probably haven’t heard about you before
they came to your site. So, they land on your homepage, the
page loads, and at that point all they know about you is
what is sitting in their browser window which is words and
site design.

A good web site adds to your credibility, professionalism,
and builds trust with your customers because it indicates
that you are a stable, successful operation. Not bad things
in anyone’s eyes.

If you split test a well designed, professional website and
a homemade website with the exact same sales copy the
professional site will out pull the homemade site. By how
much will vary depending on the unique attributes of the
prospects in that niche but Beyond just having a better
site in the end, think of all the precious time that you
will save by having someone else do your site design.

Obviously sales copy is more important but assuming that
site design is insignificant is not thinking clearly. If
you still aren’t convinced. Look at it this way, you can
spend two weeks learning how to code and do bad design
work, eventually producing a very amateur site, or you can
hire a professional who, for $300 can do that work for you
in 4 days and produce a much higher quality website.

That makes this an excellent investment. Have your site
designed by a professional. Designing it yourself is a
waste of time and money. This can free up your time spent
doing other things to get your online investment rolling.

By Abe Cherian

Copyright © 2006

You may publish this article in your ezine, newsletter on
your web site as long as the byline is included and the
article is included in it’s entirety. I also ask that you
activate any html links found in the article and in the
byline. Please send a courtesy link or email where you
publish to: support@multiplestreammktg.com

About The Author
Abe Cherian’s online automation system has helped
thousands of marketers online build, manage and grow
their business. Test-Drive iMediatools for free and
watch your sales shoot up. http://www.imediatools.com.


RSS