Hello,
I do a normal query to a database using the phplib like this:
$q_db = new DB_I_USE;
$query = "mysquery" ;
$q_db->query($query) ;
After this, I parse the results like this:
while($q_db->next_record()) {
...
echo $q_db->f("A_Field") ;
...
}
But, what I want is to add a new field when I parse the query result, I tried something like that:
$q_db->f("New_Field") = "A value" ;
But, this does not work!
Does anyone know how to add a field to the phplib object $q_db ?
Thanks.