Computer help

Site dedicated to computers


Home | Contact me

Operating Systems

General

Windows 95/98/ME

Windows NT

Windows 2000

Windows XP

Windows 2003

Linux

 

Web

HTML

Cascading Style Sheets (CSS)

Javascript

PHP

ASP

Design, marketing and developement

 

Languages

Visual FoxPro

 

Office suites

Word Processor

Spreadsheet

Presentation

Databases

Email

Links

General links

Search Engine Links

Respond - Prayer website

 

Defines - constant variables


Back to PHP

You can use define to declare constant variables

Example
	
<?php
    define("USER","David");
    echo "Hello ".USER;
?>


This will display 'Hello David'








 


Top