Hi,
I am trying to make a script call a url that sends text messages.
here is what i have to call,
http://www.intellisoftware.co.uk/smsgateway/sendmsg.aspx?username=xxx&
+password=xxx&to=12345678&text=this%20is%20my%20text&sender=me
where all the string elements are set as variables in the script below.
if ($form{'ASSMS'} eq "Yes") {
$ring = "0";
$smsdate = $Day.$monnm.$yearx;
$smslogtitle = $smsdate;
$smstitlea = $form{'DESTINY'};
$smstitleb = "44";
$smstitled = substr($smstitlea, 1, 10);
$smstitle = $smstitleb.$smstitled.$smstitlec;
$smsuser = "xxx";
$smspass = "xxx";
$smsto = $smstitleb.$smstitled;
$smssender = "DMSTEST";
$smsmsg = "$form{'DESC'} Ref: $form{'REQREF'}";
$smsmax = "3";
$smsmsg =~ s/\ /%20/g;
$smsurl = "http://www.intellisoftware.co.uk/smsgateway/sendmsg.aspx?us
+ername=$smsuser&password=$smspass&to=$smsto&from=$smssender&text=$sms
+msg&maxconcat=$smsmax";
NEED TO CALL URL HERE
$adtitle = $form{'FILEBIT'};
&oops('Cannot write') unless (open(NEWITEM, ">>$basepath/Parts/$adtitl
+e.dat"));
print NEWITEM
"\n$form{'TSTAMP'}-$form{'initials'}-SMS-$form{'DESC'}";
close NEWITEM;
$izsent = 1 ;
open(NEWITEM, ">>$smslog/$smslogtitle.dat");
print NEWITEM
"\n$Hour:$Minute-$form{'DESTINY'}-$form{'REQREF'}-$form{'DESC'}";
close NEWITEM;
print $smsurl;
print <<"EOF";
<p align="center"><font face="Verdana">Your text message has been logg
+ed and sent !</p>
EOF
}
the script works in that I can get it to print on screen the exact url i need, but i am not sure how to make the script call that url in IE.
Any Help would be appreciated.
Cheers
Michael
In reply to Call URL
by dmsparts
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.