DrupalBin
Submit Code
About
Recent Posts
Fix for Allow HTML in <i> node titles</i> for Drupal 6.x
Template Pre-proccessing
Testing Ubercart donation product
dave's menu screenshot
Code
Modify user profile page theme
Modify user profile page
Fix for Fix for Code
Fix for Code
Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
test
theme
user
views
more tags
Home
count
Count rows in a large file
December 15, 2008 - 12:54pm — Anonymous
/**
* Helper function to get the number of rows in a file. Excludes the first row
* which contains the column names.
*
* @param string $file
count
csv
file
import
rows
Read more
Number of nodes of specific type created since last login
December 11, 2008 - 12:43pm — Anonymous
SELECT
COUNT
(
1
)
FROM
{
nodes
}
n
WHERE
n.created
>
(
SELECT
login
FROM
{
users
}
u
WHERE
uid
=
%
d
)
AND
n.
type
=
'
%
s'
count
last login
mysql
node
user