/home/mjc1/public_html/onlinecs/smstest.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?
$smsId 
"mijin";
$smsPwd "1011010";
$msg "test";
$smsHp "010-2540-0030";
        echo 
"<iframe name='hiddenframe' width='0' height='0' style='border:0px'></iframe>";
        echo 
"<form name='frm' action='http://mijinsoft.co.kr/sms/smssend.php' method='post' target='hiddenframe'>";
        echo 
"<input type='hidden' name='sendType' value='sms'>";
        echo 
"<input type='hidden' name='userId' value='".$smsId."'>";
        echo 
"<input type='hidden' name='userPw' value='".$smsPwd."'>";
        echo 
"<input type='hidden' name='message' value='".$msg."'>";
        echo 
"<input type='hidden' name='toTel' value='010-2540-0030'>";
        echo 
"<input type='hidden' name='fromTel' value='010-2540-0031'>";
        echo 
"</form>";
        
        echo 
"<script>document.frm.submit();</script>";

?>