Hi
I have defined the following like so:
define('FIELD_ONE_NAME','client');
What i then want is to use that value (in this case its 'client') as a variable
So i will then have access to $client
Is this possible? I thought the syntax was something like:
$this->FIELD_ONE_NAME
but it doesnt work!
I will be using this variable in the 'value' attribute of an input field - like below.
<input type="text" name="<? print FIELD_ONE_NAME; ?>" value=" //this is where im stick! " />
Does anyone have any ideas?!
Thanks