diff --git a/Admin.php b/Admin.php
index 3c6ca89..90ae036 100644
--- a/Admin.php
+++ b/Admin.php
@@ -316,7 +316,7 @@
+
diff --git a/Script.php b/Script.php
index f766ab2..38be8a4 100644
--- a/Script.php
+++ b/Script.php
@@ -113,7 +113,7 @@
header("Location: signup.php");
return;
}
- // check if email is taked
+ // check if email exists in the database
$result = mysqli_query($con,
"SELECT * FROM Users_Table WHERE email='$email'");
if(mysqli_num_rows($result)!=0)
@@ -272,7 +272,7 @@
-$_SESSION["info_login"]="
Please check your Inbox & Junk folders for the recovery email , a reset link was sent to your email $pure_email ";
+$_SESSION["info_login"]="
Please check your Inbox & Junk folders for the recovery email. A reset link was sent to your email: $pure_email ";
header("Location: index.php");
@@ -392,7 +392,7 @@
. "('$email','$password','$fullname','$type','$passport')";
if ($con->query($sql) === TRUE) {
- $_SESSION["info_Admin_Users"]=$type." user Created successfully : email ".$email." and $password as Password.";
+ $_SESSION["info_Admin_Users"]=$type." user created successfully : email ".$email." and $password as Password.";
header("Location: Admin.php");
} else {
@@ -910,7 +910,7 @@ function checksize($file)
if($joining==0)
{
- $_SESSION["info_Courses_student"]="You enroll in this Course successfully.";
+ $_SESSION["info_Courses_student"]="You have successfully enrolled in this course.";
}
else {
$_SESSION["info_Courses_student"]="Course enrollment request was sent to the lecturer.";
@@ -951,7 +951,7 @@ function checksize($file)
if($marks>$total)
{
- echo " Marks could not be greater than total";
+ echo " Marks cannot be greater than total";
return;
}
$date= date("Y-m-d H:i");
@@ -1512,7 +1512,7 @@ function checksize($file)
if ($con->query($sql) === TRUE) {
- $_SESSION["info_Admin_Courses"]="Course portal was Created successfully.";
+ $_SESSION["info_Admin_Courses"]="Course portal was created successfully.";
if($who=="l")
{
header("Location: Courses.php");
diff --git a/Student.php b/Student.php
index 6d062b0..34c6131 100644
--- a/Student.php
+++ b/Student.php
@@ -10,7 +10,7 @@