Hi there,
cfg: w2k, Apache 1.3, php404:
Problem: each time I run this code I'm getting warning :
Warning: settype: invalid type in include/initialize.inc on line 41
but in differnet variable. Here is some data from table I'm using:
glb_variable - TEST, LIMIT
glb_value - false, 15
glb_type - boolean, integer
37 while ($row = ibase_fetch_object ($sth)) {
38 $variable = $row->GLB_VARIABLE;
39 $$variable = $row->GLB_VALUE;
40 $type = $row->GLB_TYPE;
41 settype($$variable, $type);
42 }
Can somebody tell me what I'm doing wrong ?
DAN