Help for this page

Select Code to Download


  1. or download this
    sub post_to_hsuforum{
        my ( $self, $user_id, $course_id, $forum_id, $post_subject, $post_
    +message ) = @_;
    ...
        
        curl_functions::post_submit( $self->{'connection_handle'}, $post_u
    +rl, $post_field );
    }
    
  2. or download this
    sub post_submit{
        my $ch=shift; # Curl handle 
        my $url=shift; # Url to submit form
    ...
                return 1;
        }
    }