Test Page

Our next meeting will be on Catfish Friday.

This should be an image but it is merely text.

This is the include me WordPress short codeĀ  Only admnistrator owned posts can execute the [includeme] shortcode. This message is shown only to administrators.

Was this an image?

This is part of a recipe

In a large pot, heat the oil over medium heat. Add the garlic, onion, 3 colors of bell pepper, carrots, celery, and jalapeno, then cook for about 5 minutes, stirring occasionally, until starting to soften. Add the oregano, cumin, chili powder, and salt. Stir and cook for a few more minutes.

This is some test code

This is written in PHP.

@session_start();
header("Content-type: image/png");
$_SESSION["captcha"] = substr(md5(time()),0,5);
$im = imagecreate(110, 30);
$white = imagecolorallocate($im, 244, 255, 255);
$red = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
$size = $_SESSION["captcha"];
$text = "$size";
$font = 'comic.TTF';
imagettftext($im, 20, 0, 25, 20, $red, $font, $text);
imagettftext($im, 20, 0, 25, 20, $black, $font, $text);
imagepng($im);
imagedestroy($im);