|
Provides
access to the field values. Value["FieldName"] refers to the field
to be updated or added.
Example:
|
global $dal;
$tblCars = $dal->Table("Cars");
$tblCars->Value["Make"]="Volvo";
|
If the field name contains only English alphabet letters, digits
and underscores (doesn't contain spaces and special characters),
starts with a letter and doesn't coincide with PHP reserved words,
you can also use the following notation to access the field:
|
global $dal;
$tblCars = $dal->Table("Cars");
$tblCars->Make="Volvo";
|
|