Re: [PHP-DEV] Variables VS constantes

2003-02-28 Thread Derick Rethans
Hello, please forward user questions to the [EMAIL PROTECTED] mailinglist, this list is for development _OF_ PHP, not development _with_ PHP. Derick On Fri, 28 Feb 2003, Cranky wrote: > Hello, > I would like to know if in a config file for > example, if it was better to use variables or > cons

[PHP-DEV] Variables VS constantes

2003-02-28 Thread Cranky
Hello, I would like to know if in a config file for example, if it was better to use variables or constantes ? Is it a big difference of performance or in memory used ? And the same question about the translation of a site. I would like to translate my site in many langages. So I want to create on

Re: [PHP-DEV] variables

2002-09-19 Thread Chris Shiflett
You should direct these types of problems to [EMAIL PROTECTED] You will find many people eager to help. As for your problem try this: echo $_GET["action"]; Happy hacking. Chris Sean wrote: >I have inherited the support of a PHP website that doesn't seem to be >recognizing the data from the

[PHP-DEV] variables

2002-09-19 Thread Sean
I have inherited the support of a PHP website that doesn't seem to be recognizing the data from the URL. Suppose the URL is index.php?action=run. I have the following code that I expect to display "The selected action is run": print "The selected action is "; print $action; What I get is the "Th