William C. Fordham
24704 2200 E. St.
Ohio, IL  61349
815-376-6101


Latest Producer Tools
Hope and Inspiration

Qualifications
Mission Statement
Tool Description
Subscriber Testimonials
Archives
Contact Us
Products and Services
Resource Links
Home


 

" Stewardship In Marketing: Fighting fear and greed by using knowledge of the past, an awareness of the present, and planning for the future."

 

 


 


       Subscriber Testimonials      


Read below to see what some of our current subscribers have to say about our services.
 

 

"I am a farmer that once was a grain merchandiser. Bill puts together a weekly composite of most technical and fundamental news in an easy to understand format. His Ranges, Facts & Perceptions, and Bottomline keeps me grounded and informed.

His big picture approach makes it easier to make marketing decisions by not panicking at the bottoms or getting greedy at the top. What I like the most is Bill's WASDE comparisons. It gives me insight in both corn and bean price direction that I never even considered looking at in the past. 

You can tell Bill puts a lot of time and energy into this newsletter to make my decisions simpler and more profitable."

                                                                 - Scott Odle
                                                                    Linden, IN

 

"Bill's work is very unique. His work on seasonal trends, backed by hard data, provides a strong foundation for marketing decisions. The "extras" he provides, such as basis analysis, are alone worth the subscription."

                                              -Bill Naffziger
                                               Larson Farm Management 
                                               Princeton, IL

 

"Dear Bill,

I'd like to take this opportunity to tell you how much I enjoy and how helpful your newsletter has been to me in my farming operation. It is easy to read and I particularly appreciate your "Bottom Line" section.

You keep close to your motto, "Stewardship in Marketing: Fighting Fear and Greed by using knowledge of the past, an awareness of the present, and planning for the future". Keep up the good work!! 

                                              Sincerely,
                                               Brent Hoerr Farms, Inc
                                               Brent W. Hoerr, Taylor, MO

 

"I have known Bill Fordham for several years and became one of his first subscribers to his C & S Grain Marketing letter. During my 28 years of being in the Futures Industry, I have come across many different kinds of marketing letters. Bill's approach to the WASDE reports and seasonal analysis on a weekly basis has been a good reference guide for me."

                                          -Sue K. Martin, President
                                           Ag. & Investment Services, Inc.
                                           Webster City, IA

 

 
 

 
|
Latest Producer Tools Hope and Inspiration | Qualifications | Mission Statement
| Tool Description

|
Subscriber Testimonials | Archives
|
Contact Us | Resource Links |Products and Services  | Home

 

This page has been accessed #!/usr/bin/perl ############################################################################## # Cliff's Counter Version 1.01 # # Copyright 1998 Shaven Ferret Productions # # Created 6/12/98 Last modified 6/18/98 # # Available at http://www.shavenferret.com/scripts # ############################################################################## # COPYRIGHT NOTICE # # Copyright 1998 Shaven Ferret Productions All Rights Reserved. # # # # This script can be used\modified free of charge as long as you don't # # change this header thing. By using this script you agree to indemnify # # me from any liability that might arise from its use. In simple English, # # if this script somehow makes your computer run amuck and kill the pope, # # it's not my fault. # # # # Redistributing\selling the code for this program without prior written # # consent is expressly forbidden. # ############################################################################## # Enter the path of the log file. This is where you can find the stats # for all your pages. This is also where all the data is kept. $logpath = "/home/wilmar/public-html/count.html"; # If you don't want the number of visits to pop up whenever the counter is # called, delete the next line. $visible = 1; # Enter the minimum number of digits for the counter. If the actual number # is smaller than this, it will add zeros to the front. $pad = 5; ############################################################################## # Congratulations! You've finished defining the variables. If you want to, # # you can continue screwing with the script, but it isn't necessary. # ############################################################################## open (LOG, "$logpath"); @data = ; close(LOG); $url = "$ENV{'DOCUMENT_URI'}:"; $count = 0; $pad = "%.$pad"."d"; open (LOG, ">$logpath"); foreach $line(@data) { if ($line =~ /$url/) { $line =~ /(.*)<\/td>/; $count = $1; $count++; $count = sprintf($pad, $count); print LOG "$url$count\n"; } elsif ($count == 0 && substr($line,0,8) eq "") { $count++; $count = sprintf($pad, $count); print LOG "$url$count\n"; print LOG "$line"; } else { print LOG "$line"; } } close(LOG); if ($visible) { print "Content-type: text/html\n\n"; print "$count"; } times.