URL001.php
1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
//*****************************************************************************
//*
//* プログラム名:携帯版URL送信
//* プログラムID:URL001.php
//* 機能 :携帯版にURL送信用メールアドレス入力
//* 作成者 :
//*
//*****************************************************************************
header("Content-type: text/html; charset=EUC-JP");
//***************************
//* インクルードファイル
//***************************
include("./include/session_start.inc"); //
include("./include/SessionChk.inc"); //
include("./include/dbcon.inc"); //DB接続
?>
<span class="Tinnyfont"><br></span>
<span class="Tinnyfont"><br><br></span>
<table width="702" border="0" cellspacing="1" cellpadding="1" class="mainColor">
<tr>
<TD class="toneDown" width=200 height=30><span class=Normalfont>送信URL</span></TD>
<TD bgColor=#ffffff width="500">
<input type=radio name=send_flg value=0 checked><span class="Normalfont">簡易ログインURL</span><span class="Normalfont">(パスワード入力不要)</span><BR>
<input type=radio name=send_flg value=1><span class="Normalfont">ログインURL</span><BR>
</TD>
</tr>
<tr>
<TD class="toneDown" width=200 height=30><span class=Normalfont>送信メールアドレス</span></TD>
<TD bgColor=#ffffff width="500">
<input type="text" name="account" size="27" maxlength="50">@<input type="text" name="domain" size="27" maxlength="50">
</TD>
</tr>
</table>
<table width="702">
<tr>
<td width="351" height="35" align="center"><input type="button" onclick="return move_send();" value=" 送信する "></td>
<td width="351" height="35" align="center"><INPUT TYPE="RESET" VALUE="入力クリア"></td>
</tr>
</table>