Hello, I wanna put a count of a select on a header.
<?php
$count = db_result(db_query("SELECT COUNT(*) FROM {node} WHERE type =
'articulo'" ));
echo $count;
?>
This is working well but now I need to filter by content type and by a
CCK text field.
Any idea?
Thank's!