hi,
i have a database connection object (extension of the phplib DB_SQL class) that I pass by reference into a function.
In the function I print the value of a field:
print($db_connection->f("Field_Name"));
The value prints there but does not print in the calling function with the same statement. What could be causing this??
i have a database connection object (extension of the phplib DB_SQL class) that I pass by reference into a function.
In the function I print the value of a field:
print($db_connection->f("Field_Name"));
The value prints there but does not print in the calling function with the same statement. What could be causing this??