Hi
This is the (global) way of defining the variables
$db = 'Select * from TBL_CUSTOMERS';
$query = ibase_query($connection, $db);
while ($row = ibase_fetch_row($query)) {
$test=$row[8];
$test1=$row[9];
$test2=$row[16];
$test3=$row[17];
$test4=$row[18];
$test5=$row[19];
$test6=$row[20];
$test7=$row[4];
$test8=$row[14];
$test9=$row[15];
$test10=$row[10];
}
<INPUT name=cus_address value = "<? echo $row[8]; echo $test; ?>">
and so on............
This is the way how i coded to get the records from my database and then show in my form fields when i run the php program.
If there are still some more fields, i guess itz gonna run into pages.
IS THERE NE OTHER SMART WAY OF CODING?
your suggestions would be highly appreciated.
best