QUOTE(Lao_Tzu @ Dec 22, 2006, 03:28 PM)

Thanks guys, very helpful.
I'm not sure if you're being facetious because the pseudocode posted above is not very helpful without the PHP/MySQL details. Here is the actual code I am using, suitably touched up to eliminate any sensitive information. You will want to add your MySQL login info to the below script, and modify the SQL call to refer to the relevant table; and then place the code snippet in the appropriate location that deals with posting:
if ( !!stristr($_REQUEST['Post'],"href") or !!stristr($_REQUEST['Post'],"http") ){
$id=$_REQUEST['member_id'];
$conn = mysql_connect("localhost", $DB_USERNAME, $DB_PASSWORD); mysql_select_db($DB_NAME);
$sql = "SELECT posts as posts FROM members WHERE id='$id'";
$row = mysql_query($sql);
$row2=mysql_fetch_array($row);
if ($row2['posts']<=10){
$diemsg="<center><br><br><br><b>You must make more posts before being allowed to post URL's</b>";
die($diemsg);
}
}