SMTP Email Address Validation

| Webtraffic Exchange

SMTP Email Address Validation

How do you validate an email address? You may validate it with a javascript on the client-side, or run a server-side validation via a regular expression or a newly available filter_var function of the PHP 5.2.x. Perhaps,...

Emails

Read More +
Zend Mail Attachments

| Webtraffic Exchange

How to add attachment with the Zend_Mail?

Files can be attached to an email using Zend_Mail->createAttachment() method. The createAttachment() method requires the content of the attachment and 3 optional arguments. Please note that it takes file content as an...

Framework

Read More +
Javascript Overview

| Webtraffic Exchange

Javascript Overview

JavaScript is an object-oriented scripting language designed to be embedded in HTML pages for added interactivity and to offer intelligence to web pages. JavaScript provides a set of objects (Array, Date, and Math), and...

Programming

Read More +
Double and Triple equal operators in PHP

| Webtraffic Exchange

Double and Triple equal operators in PHP

Even if you're a seasoned programmer, you may not have seen triple equals operator in most programming languages. In PHP, the triple equals (===) operator was introduced in version 4 and it checks for equality similar to...

Programming

Read More +