[columbus.pm] Fwd: [Charles Day <Charles.Day@frontstep.com>]

Jason Alexander jalex at pobox.com
Thu Jan 9 06:12:47 CST 2003


From: Charles Day <Charles.Day at frontstep.com>
To: "'columbus-pm-list at pm.org'" <columbus-pm-list at pm.org>
Subject: Meeting
Date: Wed, 8 Jan 2003 13:00:51 -0500 


Scottie's was a good location for me.   There's another one about 1 mile
north downtown Worthington.  Looked smaller though.   

Whoever's interested, send me your contact information (name, URL, company)
and I'll post it to the website.  

There was some talk about a formal meeting with a speaker in 2 weeks.  Let's
get this thread going.

Len, that image/gif header idea worked out great.  For those interested, we
were talking about banner ad apps.  I wanted a script that could first print
the banner, then do some database stuff.  Was having problems getting around
the header. Here's some of the code that does this nicely:



This goes on any html page:

<a href="http://www.s1te.com/cgi-bin/clicks.cgi?2"><img
src="http://www.s1te.com/cgi-bin/banners.cgi?2" border=0></a>


Here's part of the banners.cgi:

$image = "banners/$image";
if (open (IMAGE, "<" . $image))
{
   $no_bytes = (stat ($image))[7];

   print "Content-type: image/gif", "\n";
   print "Content-length: $no_bytes", "\n\n";
   print <IMAGE>;
}
else
{
   &databaseerror("ID verified, but Cannot display image $image.");
}


-----------------------------------------------------------------------
To send mail to the Columbus.pm list send email to
columbus-pm-list at pm.org

To unsubscribe send an email to majordomo at pm.org  with
unsubscribe columbus-pm-list
-----------------------------------------------------------------------



More information about the Columbus-pm mailing list