0

オンラインサインアップシートの作成を依頼されました。私はほぼ完了しましたが、わずかな問題が発生しました。イベントにサインアップするために、イベントの詳細を表示できる新しいページを作成しました。ただし、テキストがファイルに約半分書き込まれると、入力が html/php コードではなくテキストとして書き込まれ始めます。どんな助けでも大歓迎です。

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>

<?php

   $sitename = $_POST[eName];
   $title = $_POST[eName];
   $sDate = $_POST[sDate];
   $enDate = $_POST[enDate];
   $exDate = $_POST[exDate];
   $desc = $_POST[desc];
   $pName = $_POST[eName];

   $con=mysqli_connect("localhost","emuas","flgdls","EMUAS_signUp");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="INSERT INTO TEST (EventName, StartDate, EndDate, ExpiryDate, PageName, Description)
VALUES
('$_POST[eName]','$_POST[sDate]','$_POST[enDate]','$_POST[exDate]','$_POST[eName]','$_POST[desc]')";

if (!mysqli_query($con,$sql))
  {
  die('Error: ' . mysqli_error($con));
  }

  $eventID = mysqli_insert_id($con);

    $fileStart='<html>
   <head>
   <title>';

   $fileStTable=' </title>
   </head>
   <body>

 <table>
 <tr align="left">
 <th> ';

 $fileSDate=' </th>
 </tr>
 <tr align="left">
 <th> Start Date: </br>';

 $fileEnDate='</th>
 <th> End Date: </br>';

   $fileExDate='</th> 
 <th> Expiry Date: </br>';

 $fileDesc='</th>
 </tr>
 </table>
 <table id =createSheet>
 <tr align="left">
 <th> Description: </br>';

 $fileEnTable='</th>
 </tr>
</table>
';

 $fileStPHP='
 <?php 
$con=mysqli_connect("localhost","emuas","flgdls","EMUAS_signUp");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sign = mysqli_query($con,"SELECT * FROM SIGN_UP_TEST ORDER BY User");

echo "<table> 
<tr> 
<th>Name</th> 
<th>Status</th> 
<th>Comments</th> 
</tr>"; //Error Starts here. The "; are written as text and so is everything afterwards, until $fileStForm

while($row = mysqli_fetch_array($sign))
  {
  while($row["EventID"]=';


  $fileEnPHP='echo "<tr>";
  echo "<td>" . $row["User"] . "</td>";
  echo "<td>" . $row["Comments"] . "</td>";
  echo "</tr>";
  }
echo "</table>";

mysqli_close($con);
?>';

$fileStForm='
<form action="sign_user.php" method="post">
<input type="hidden" name="id" value="';

$fileEnForm='" />
<table>
<tr>
<td> Name: <br /> <input type="text" name="user" /> </td>
</tr>
<tr>
<td> Comments: <br /> <input type="text" name="comments" /> <input type="submit" value="Sign Up"/>  </td>
</tr>
</table>
</form>';

$fileEnd=' </body>
   </html>';


   $fp = fopen("sign_up_sheets/$sitename.html", "w");
   fputs($fp, $fileStart);
   fputs($fp, $title);
   fputs($fp, $fileStTable);
   fputs($fp, $sitename);
   fputs($fp, $fileSDate);
   fputs($fp, $sDate);
   fputs($fp, $fileEnDate);
   fputs($fp, $enDate);
   fputs($fp, $fileExDate);
   fputs($fp, $exDate);
   fputs($fp, $fileDesc);
   fputs($fp, $desc);
   fputs($fp, $fileEnTable);
   fputs($fp, $fileStPHP);
   fputs($fp, $eventID);
   fputs($fp, $fileEnPHP);
   fputs($fp, $fileStForm);
   fputs($fp, $eventID);
   fputs($fp, $fileEnForm);
   fputs($fp, $fileEnd);
   fclose($fp);

mysqli_close($con);

echo ("<SCRIPT LANGUAGE='JavaScript'>
    window.alert('Your sheet has been created')
    window.location.href='sign_up.php';
    </SCRIPT>");
    ?>


</body>
</html>
4

1 に答える 1