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
Resource Links
Products and Services
Home


 

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

 

 


 


       Products and Services      


Top

C&S Grain Market Consulting Description of Services 

FOR PRODUCERS                 FOR TRADERS

*********************************************************


FOR PRODUCERS

Several different Tools are published on a Weekly, Bi-Weekly, Monthly or Quarterly basis, depending on the type,
 with different areas of focus and history. 

These Tools are presented at the
 
Latest Producer Tools Link 
for December Corn Futures (CZ) and
 November Soybean Futures (SX)

Telephone consulting privileges or Special Research Reports
 are not included on this Website. They are only available with a paid subscription of $250.00 year. 

The client is encouraged to initiate one telephone consultation per week. 
All Special Research Reports, articles, and alerts produced by C&S
will be sent to you by e-mail.
 

Regular questions about marketing are also encouraged by e-mail. 

Subscribe to C&S Grain Market Consulting



Back To Top

 

******************************

 

 

FOR TRADERS

A wide variety of historical data and 
analysis charts for many commodities,
 in addition to Corn and Soybeans,
are available by special request.

The charts can be custom made in your name.

Cost is negotiable, depending on the size of the project. 
A minimum charge for 1 hour is $50.00.

Back To Top

*************************************************

 

Click On Link Below to Subscribe to any of the C&S Products Above

C&S Subscription Form Word Format

C&S Subscription Form PDF Format

 

Back To Top

 

 

 

 

 

 
 

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

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

 

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.