Author name: Downstream News

Stopping the WordPress Spam

Post comment settings off, but comments for post “” are appearing in email. Trying: updating WP_posts to – SET comment_status=”closed”; since this site is receiving no new posts. Next: Maybe it is trackback spam – try disabling that Can remove or exit(): wp-comments file in root Nov 19: Updating WP_Posts has effectively stopped all spam from […]

Stopping the WordPress Spam Read More »

Nice Simple Lightbox

Too often jquery plugins suffer from the Windows mentality of “do everything for everyone” which leaves them bloated and confusing. Sometimes you just wanted something nice and simple to perform a task quickly out of the box. I was looking for a lightbox like that when I came across Lightbox_me by Buck Wilson. Quick and

Nice Simple Lightbox Read More »

Loop Through PHP Request Values – GET and POST

Loop through PHP Request Values In order to Loop through PHP Request Values – GET and POST without knowing what they all might be, you can simply use the following code: foreach ($_REQUEST as $key => $value) { $value = mysql_real_escape_string( $value ); $value = addslashes($value); $value = strip_tags($value); if($value != “”){$requestnumber ++;} echo $key.

Loop Through PHP Request Values – GET and POST Read More »