-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheck.php
More file actions
58 lines (29 loc) · 769 Bytes
/
Check.php
File metadata and controls
58 lines (29 loc) · 769 Bytes
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>نمایش مشخصات </title>
</head>
<body>
<?php
include("header.php");
?>
if (isset($_POST['text1']) & & !empty($_POST['text1']) & &
isset($_POST['password']) & & !empty($_POST['password']) & &
isset($_POST['repassword']) & & !empty($_POST['repassword'])) {
$text1=$_POST['text1'];
$password=$_POST['repassword'];
$repassword=$_POST['repassword'];
} else
exit("برخی از فیلد ها مقدار دهی نشده ");
if($password != $repassword)
exit("کلمه عبور با تکرار آن مشابه نیست");
?>
<div dir="rtl" style="text-align:left;">
<?php
echo("username=". $text1."<br>");
echo("password=". $password."<br>");
?>
</div>
</body>
</html>