This is the source I'm using, the sub routines work if I call them explicitly, but I wan't to call them from a link on the same page
#!perl.exe -wT use Strict; use CGI; my $q = new CGI; print $q->header("text/html"); print <<WEB_PAGE; <HTML> <HEAD> <TITLE>Help ME</TITLE> </HEAD> <H1> Just a simple page for now </H1> WEB_PAGE my ($device, $port, $house, $unit, $interface); # Use BEGIN so we can conditionally eval modules BEGIN { # Set the parameters $interface = 'CM11'; $port = 'COM1'; $house = 'A'; $unit = '2'; use Win32::SerialPort 0.17; die "$@\n" if ($@); $device = Win32::SerialPort->new ($port) or die "Can't start $port +\n"; eval "use ControlX10::CM11 qw( :FUNC 2.06 )"; die "$@\n" if ($@); } $BASE_URL = '/cgi-bin/lights.cgi'; print "Turn light <a href='$BASE_URL?action=toggle_on'>ON</a>"; # &toggle_on; # &toggle_off; sub toggle_on{ my $cmd = 'J'; print"<h2>Turning Lights ON</H2>"; print "---> Toggle light $house$unit to on \($cmd\)\n"; send_cm11($device, $house . $unit); send_cm11($device, $house . $cmd); } sub toggle_off{ my $cmd = 'K'; print"<h2>Turning Lights OFF</H2>"; print "---> Toggle light $house$unit to on \($cmd\)\n"; send_cm11($device, $house . $unit); send_cm11($device, $house . $cmd); }

In reply to Re: Calling a sub-routine in CGI by Anonymous Monk
in thread Calling a sub-routine in CGI by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.