hi alll
if i insert require() for the same file a couple of time in a php script; is that file required updated/executed once again so that the same variables' values (in the .inc file) are updated???
thanks
Nope. Require() does not included any updated variable changes or any other file changes. You should use include(), which will be updated upon multiple execution
Hi all
a straightforward question this one i dont see this in the manual... so here it is: is there a function to determine how many fields in a row when the query result is return?!
thankss
Depends on which database you are using.
For MySQL it's mysql_num_fields()