HTML
メールを送信するためのデータを取得するために参照ボタンでテンプレートを選択する PHP メーラーを使用しています。
変数のデータを取得したい..データを取得できない..
Warning: fopen(filename.txt) [function.fopen]: failed to open stream: No such file or directory in PATH/php_mailer\sendmail.php on line 18
Cannot open file: filename.txt
HTML
<form name="addtemplate" id="addtemplate" method='POST'
action='' enctype="multipart/form-data">
<table style="padding-left:100px;width:100%" border="0" cellspacing="10" cellpadding="0" id='addtemplate'>
<span id='errfrmMsg'></span>
<tbody>
<tr>
<td class="field_text">
Select Template
</td>
<td>
<input name="template_file" type="file" class="template_file" id="template_file" required>
</td>
</tr>
<tr>
<td>
<input id="group_submit" value="Submit" type="submit" name='group_submit' />
</td>
</tr>
</tbody>
</table>
</form>
PHPコード
if(isset($_POST['group_submit'])){
if ($_FILES["template_file"]["error"] > 0) {
echo "Error: " . $_FILES["template_file"]["error"] . "<br>";
}
else {
echo $templFile = $_FILES["template_file"]["name"] ;
$templFileHandler = fopen($templFile, 'r') or die('Cannot open file: '.$templFile); //open file for writing ('w','r','a')...
echo $templFileData = fread($templFileHandler,filesize($templFile));
}
}