Since 4/4/2012 6:17:10 PM, nkapproach has written 5 articles and participated in 2 conversations. nkapproach signature: nkapproach
nkapproach's articles:
Items(5) /1
A question about php reference in array231 (5/12/2008 5:20:38 PM) comp.lang.php a code segment: $i = array('data'=>1000); $arr = array('i'=>&$i); $arr2 = $arr; $i['data'] = 200; print_r($arr); print_r($arr2); the result is: Array ( [i] => Array ( [data] ... hi
session_start costed too long....137 (7/11/2007 9:09:47 AM) comp.lang.php I used ajax. When the first time I visit the page, it spent about less than 0.3s but when I visit the same url second time, it cost more than 10s, I located the session_start(); call ,what is the problem?... gb2312
How to get the row number at mysql2144 (4/26/2007 4:53:48 AM) comp.databases.mysql When I use select and get a result set ,then I found a column that indicate the row number in the result set is needed.This is for reporting. Is there a function which can fetch the row number in the result set... hi