mail() function – the PHP Manual

mail (PHP 3, PHP 4, PHP 5) mail — Send mail Description bool mail ( string to, string subject, string message [, string additional_headers [, string additional_parameters]] ) Sends an email. Parameters to Receiver, or receivers of the mail. The formatting of this string must comply with RFC 2822. Some examples are: user@example.com user@example.com, anotheruser@example.com User <user@example.com> … Read more

Understanding CSS:
Syntax and Basic Data Types

The Following excerpt is borrowed directly from the W3C CSS 2.1 Specification: Ch. 4 Syntax and basic data types. It has been modified from the original code only in that relative paths have been changed to absolute URL’s. Rather than cite specific sections of Ch 4, i thought it best to leave it open to case-by-case … Read more

Dynamic-Outlines (e.g. :focus {outline:color}) | CSS 2.1 Spec: W3C

Much like the border property, the outline property will create a line surrounding the element— however, the main remarkable difference is that Outline unlike border does not take up screen real-estate (it doesn’t cause the ‘outlined element’ to get wider and taller as would adding a border property. 18.4 Dynamic outlines: the ‘outline’ property At … Read more

White-Space | W3C Specification: CSS 2.1

NOTE:This page formerly located at : http://WordpressCenter.net/2006/02/26/white-space-w3c-specification-css-21/ . the URL was modified to insert the decimal point for ‘2.1’I am sorry for any inconvenience. I hope you have been able to use this resource nonetheless. I logged this excerpt from the W3C Spec on White-Space to make more clear my entry on the :before Pseudo-element … Read more

Quick-start rules of thumb: the Steps of Development

(developing the idea here)

  1. Need is determined
  2. Functions Researched
  3. Application Development Process Begins
  4. More Research
  5. More Development
  6. (repeat #4 and #5 as necessary)
  7. Test “First Working Version” of an App

now, the critical steps that follow are those which i must begin to focus on with more concern so as to develop a better method, and understanding of how to “debug” an app (not knowing whether a bug exists or not), and to check for security vulnerabilities

Read more

W3C Specification: CSS 2.1 | Inline-level elements and inline boxes

Inline-level elements are those elements of the source document that do not form new blocks of content; the content is distributed in lines (e.g., emphasized pieces of text within a paragraph, inline images, etc.). Several values of the ‘display’ property make an element inline: ‘inline’, ‘inline-table’, and ‘run-in’ (part of the time; see run-in boxes). … Read more