projects
/
ccan
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
committing changes for web pages after update of create_tar_ball
[ccan]
/
web
/
dbfunc
1
<?php
2
function sqlite3_num_rows($dbRes)
3
{
4
$n = 0;
5
while(sqlite3_fetch_array($dbRes) != '')
6
{
7
$n = $n + 1;
8
}
9
return $n;
10
}
11
?>