View Single Post
  #13 (permalink)  
Old 07-22-2008, 03:57 AM
madhuri_vats madhuri_vats is offline
D-Web Trainee
 
Join Date: Jul 2008
Posts: 1
madhuri_vats is on a distinguished road
Default Re: DEFINE and GLOBAL variables in PHP

global $a = 1; /* global scope */

function Test()
{
echo $a; /* reference to local scope variable */
}

Test();

now this willl work

Web Design Company | Asp.Net Programmers | web designers Delhi
Reply With Quote