私は、ユーザーがログインまたは登録して、私と排他的に通信できるシンプルなメッセージングアプリケーションを作成しています。ユーザー名とパスワードは.txt(他のすべてのユーザーを保存する)の行に保存され、会話は一意のユーザーのname.txtに行ごとに保存されます
ユーザーが登録またはログインしたときに、フォームから、以下の会話を表示するスタンドアロンのテキスト領域にリダイレクトしたいと思います。ただし、ユーザーをリダイレクトするときに、会話の内容を表示するためにユーザー名(usrNm)を次のphpファイルに送信する方法がわかりません(ファイルはユーザーのユーザー名です)。include(index.php)を試しましたが無駄になりました。htmlを渡さずにindex.phpを含めるにはどうすればよいですか。これを行うための最良の方法は何ですか?
''
vs""
を使用する一般的なルールについても混乱してい""
ます。変数を内部に入れて、''
他のすべてで機能すると思いますか?また、htmlで言われまし<input type="text"
た..テキストは引用符で囲む必要がありますが、引用符なしで機能する場合の利点は何ですか?もう1つの小さな質問は、私を啓蒙したい場合は30行目にあります。すべてのアドバイスは大歓迎です!
//index.php
<?php
echo "Login or register. ";
//Ensures form exists and instantiates neccesary variables
if (isset($_POST['usrNm'],$_POST['pass'],$_POST['passConf'])) {
$usrNm = $_POST['usrNm'];
$pass = $_POST['pass'];
$passConf = $_POST['passConf'];
$rec = file('userPass.txt');
//Parses username from users txt file
function usrName($indx){
global $rec;
$usrName = substr($rec[$indx], 0, stripos($rec[$indx], ' '));
return $usrName;
}
//Parses password from users txt file
function passWrd($indx){
global $rec;
$passWrd = trim(substr($rec[$indx], stripos($rec[$indx], ' ')));
return $passWrd;
}
//Attempts to log user in
if(!empty($usrNm)&&!empty($pass)&&empty($passConf)) {
for($i=0;$i<count($rec);$i++) {
//Logs user in
if (($usrNm==usrName($i))&&($pass==passWrd($i))) {
//Outputs admin screen
if ($usrNm=='rich') {
for ($x=1; $x<count($rec); $x++) {
//How to evaluate usrName($x) between link tags?
$usrNameLink = usrName($x);
echo "<a href='$com.php'>$usrNameLink</a> ";
}
break;
}
else header('Location: com.php');
}
//Wrong password
elseif (($usrNm==usrName($i))&&($pass!=passWrd($i))) {
echo 'Wrong password.';
break;
}
//Username doesn't exist
elseif (($i==count($rec)-1)&&($usrNm!=usrName($i))) {
echo 'Username doesn\'t exist.';
}
}
}
//Attempts to register user.
elseif (!empty($usrNm)&&!empty($pass)&&!empty($passConf)) {
for($i=0;$i<count($rec);$i++) {
//Username taken
if ($usrNm==usrName($i)) {
echo 'Username taken.';
break;
}
//Registers user: updates user txt file and creates txt file that saves correspondence between the user and me
elseif (($i==count($rec)-1)&&($usrNm!=usrName($i))&&($pass==$passConf)) {
$handle = fopen('userPass.txt', 'a');
$handle2 = fopen("$usrNm.txt", 'a');
fwrite($handle, $usrNm.' '.$pass."\r\n");
fwrite($handle2, 'Richard: Here you can send me messages.');
fclose($handle);
fclose($handle2);
header('Location: com.php');
}
//Passwords don't match
elseif (($i==count($rec)-1)&&($usrNm!=usrName($i))&&($pass!=$passConf)) {
echo 'Passwords don\'t match.';
}
}
}
//User didn't fill in the password field
else{echo 'Fill in the required fields.';}
}
?>
<form action="index.php" method="post">
Username:<input name="usrNm" type="text"></input><br>
Password:<input name="pass" type="password"></input><br>
Confirm Password (only for registration):<input name="passConf" type="password"></input><br>
<input name="submit" type="submit"></input>
</form>
//com.php
<?php
include('index.php');
if (isset($_POST['msg'])) {
if (!empty($_POST['msg'])) {
echo $usrNm;
}
}
?>
Welcome!
<form action="com.php" method="post">
<textarea name="msg" cols="64" rows="4" type="text"></textarea><br>
<input name="send" type="submit"></input>
</form>