Compare commits

..

No commits in common. "288d1f39b7a040bdec52671a884caa2591eca367" and "0d66b85d0dff3b0266a50d4bf2a0db817048338b" have entirely different histories.

16 changed files with 393 additions and 958 deletions

View File

@ -1,6 +1,6 @@
APP_NAME=iCLOP
APP_ENV=local
APP_KEY=base64:7PMb8dvpBWcRs5AMi3nEDHitF2MvqgC9QbOvCE5dvDo=
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
@ -11,16 +11,10 @@ LOG_LEVEL=debug
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=iclop
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
DB_HOST_SECOND=127.0.0.1
DB_PORT_SECOND=3306
DB_DATABASE_SECOND=test_db
DB_USERNAME_SECOND=root
DB_PASSWORD_SECOND=
NODEJS_DB_HOST=127.0.0.1
NODEJS_DB_PORT=3306
NODEJS_DB_DATABASE=iclop_nodejs

View File

@ -30,11 +30,9 @@ public function index(){
}
function php_material_detail(){
$mulai = Session::put('mulai', $_GET['mulai']);
$phpid = isset($_GET['phpid']) ? $_GET['phpid'] : '';
$start = isset($_GET['start']) ? $_GET['start'] : '';
$type = isset($_GET['type']) ? $_GET['type'] : '';
$materi = isset($_GET['materi']) ? $_GET['materi'] : '';
$phpid = isset($_GET['phpid']) ? $_GET['phpid'] : '';
$start = isset($_GET['start']) ? $_GET['start'] : '';
$type = isset($_GET['type']) ? $_GET['type'] : '';
$results = DB::select("select * from php_topics_detail where id_topics = $phpid and id ='$start' ");
@ -64,7 +62,6 @@ function php_material_detail(){
'row' => $detail,
'topics' => $topics,
'phpid' => $phpid,
'materi' => $materi,
'html_start' => $html_start,
'pdf_reader' => $pdf_reader ,
'topicsCount' => $topicsCount ,
@ -101,7 +98,6 @@ function send_task(){
$phpid = isset($_GET['phpid']) ? $_GET['phpid'] : '';
$task = isset($_GET['task']) ? $_GET['task'] : '';
$type = isset($_GET['type']) ? $_GET['type'] : '';
$materi = isset($_GET['materi']) ? $_GET['materi'] : '';
$task_db = DB::table('php_task')
->where('id_topics', $phpid)
@ -129,7 +125,6 @@ function send_task(){
'row' => $detail,
'topics' => $topics,
'phpid' => $phpid,
'materi' => $materi,
'html_start' => $html_start,
'pdf_reader' => $pdf_reader ,
'detailCount' => $persen,
@ -147,13 +142,9 @@ function php_admin(){
}
function task_submission(Request $request){
$phpid = $_POST['phpid'];
$type = $_POST['type'];
$task_id = $_POST['testing_number_one'];
$materi = $_POST['materi'];
$time_left = $_POST['time_left'];
$phpid = $_POST['phpid'];
$type = $_POST['type'];
$task_id = $_POST['testing_number_one'];
$file = $request->file('file');
//$file_name = Auth::user()->name.'_'.$file->getClientOriginalName();
@ -188,36 +179,12 @@ function task_submission(Request $request){
DB::insert("insert into php_user_submits(userid) values ('$val')");
$fileContent = file_get_contents($path);
$email = Auth::user()->email;
$date = date('Y-m-d');
$fileContent = str_replace("'", '"', $fileContent);
if($_POST['testing_number_one'] == 1){
$testing_number_one = "testing_number_one";
$time_start = "10:00:00";
$start = new \DateTime($time_start);
$end = new \DateTime($time_left);
$diff = $start->diff($end);
$minutes = $diff->i;
$seconds = $diff->s;
$interval = new \DateInterval("PT{$minutes}M{$seconds}S");
$start->add($interval);
$end_time = $start->format('H:i:s');
}elseif($_POST['testing_number_one'] == 2){
$check_sq = DB::select("SELECT * FROM php_submits_submission where email = '$email' and testing_type = 'testing_number_one' and id_materi = '$materi' order by id desc limit 1");
if(count($check_sq) > 0){
$time_start = $check_sq[0]->time_end;
$start = new \DateTime($time_start);
$end = new \DateTime($time_left);
$diff = $start->diff($end);
$minutes = $diff->i;
$seconds = $diff->s;
$interval = new \DateInterval("PT{$minutes}M{$seconds}S");
$start->add($interval);
$end_time = $start->format('H:i:s');
}
$testing_number_one = "testing_number_two";
}elseif($_POST['testing_number_one'] == 3){
$testing_number_one = "testing_number_three";
@ -225,14 +192,11 @@ function task_submission(Request $request){
$testing_number_one = "testing_number_four";
}elseif($_POST['testing_number_one'] == 5){
$testing_number_one = "testing_number_five";
}elseif($_POST['testing_number_one'] == 6){
$testing_number_one = "testing_number_six";
}
DB::select("insert into php_submits_submission(id_materi,task_id,task_topics,task_no,testing_type,username,userfile,ket,email,time_start,created_at,time_end)values
('$materi','$task_id','$phpid','$type','$testing_number_one','$val','$file_name','$fileContent','$email','$time_start','$date','$end_time')");
return redirect("/php/send-task?phpid=$phpid&task=$task_id&type=$type&materi=$materi")->with('status', 'File Successfully Uploaded!');
$fileContent = str_replace("'", '"', $fileContent);
DB::select("insert into php_submits_submission(task_id,task_topics,task_no,testing_type,username,userfile,ket) values ('$task_id','$phpid','$type','$testing_number_one','$val','$file_name','$fileContent')");
return redirect("/php/send-task?phpid=$phpid&task=$task_id&type=$type")->with('status', 'File Successfully Uploaded!');
}
function task_submission_(Request $request){
@ -274,8 +238,6 @@ function task_submission_(Request $request){
$testing_number_one = "testing_number_four";
}elseif($_POST['testing_number_one'] == 5){
$testing_number_one = "testing_number_five";
}elseif($_POST['testing_number_one'] == 6){
$testing_number_one = "testing_number_six";
}
DB::select("insert into php_submits_submission(task_id,testing_type,username,userfile,ket) values ('$task_id','$testing_number_one','$val','$file_name','$fileContent')");
@ -305,213 +267,12 @@ function unittesting(){
}elseif($kode == '5'){
$unitesting_run = 'testLatihanNumberFive';
$testing_number_one = "testing_number_five";
}elseif($kode == '6'){
$unitesting_run = 'testLatihanNumberSix';
$testing_number_one = "testing_number_six";
}
/** CODECEPTION TEST */
//$command = "cd " . base_path() . " && php codecept.phar run Functional LoginTest --filter $unitesting_run"; //(codeception)
//$command = "cd " . base_path() . " && php codecept.phar run Unit PHPBasicTest --filter testLatihanNumberOne";
// $output = shell_exec($command);
/** PHPUNIT TEST */
$path_test = base_path("phpunit.xml");
$pa = "vendor\bin\phpunit -c $path_test --filter HomepageLayoutTest::$unitesting_run";
$path = base_path($pa);
$output = shell_exec($path);
//echo "<pre>$pa</pre>";
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = '$testing_number_one'");
$row = $sql[0];
$html = $row->testing_rule;
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$string = json_encode($output);
$text = str_replace("\n", ' ', $output);
$cleaned = preg_replace('/\e\[[;?\d]*m/', '', $string);
// Pola regex untuk mengekstrak versi Codeception
$pattern = '/Codeception PHP Testing Framework v([\d.]+)/';
// Define patterns to extract relevant information
$pattern_phpunit_version = '/PHPUnit\s+([\d.]+)\s+by/';
$pattern_php_runtime = '/Runtime:\s+PHP\s+([\d.]+)/';
$pattern_configuration = '/Configuration:\s+(.+)/';
$pattern_failure_count = '/There was (\d+) failure/';
$pattern_failure_test_case = '/Failed asserting that \'(.*?)\' contains \'(.*?)\'./';
$pattern_failure_location = '/(C:\\\\.*?\\.php):(\d+)/';
$pattern_path = 'C:\\xampp\\htdocs\\iclop\\phpunit.xml';
$pattern_time = '/Time:\s+([0-9:.]+)/';
$pattern_memory = '/Memory:\s+([\d.]+)\s+(MB|KB|GB)/';
$pattern_ok = '/OK\s+\((\d+)\s+test(?:s)?,\s+(\d+)\s+assertion(?:s)?\)/';
$pattern_failures = '/Tests:\s+(\d+),\s+Assertions:\s+(\d+),\s+Failures:\s+(\d+)/';
// Perform matching
preg_match($pattern_phpunit_version, $text, $matches_phpunit_version);
preg_match($pattern_php_runtime, $text, $matches_php_runtime);
preg_match($pattern_configuration, $text, $matches_configuration);
preg_match($pattern_failure_count, $text, $matches_failure_count);
preg_match($pattern_failure_test_case, $text, $matches_failure_test_case);
preg_match($pattern_failure_location, $text, $matches_failure_location);
preg_match($pattern_ok, $text, $matches_ok);
preg_match($pattern_time, $text, $matches_time);
preg_match($pattern_memory, $text, $matches_memory);
preg_match($pattern_failures, $text, $matches_failures);
preg_match($pattern, $cleaned, $matches);
// Extracted information
$phpunit_version = $matches_phpunit_version[1] ?? 'Not found';
$phpunit_stat = isset($matches_ok[0]) ? $matches_ok[0] : "Not found";
$phpunit_time = isset($matches_time[1]) ? $matches_time[1] : "Not found";
$phpunit_memory = isset($matches_memory[0]) ? $matches_memory[0] : "Not found";
$php_runtime = isset($matches_php_runtime[1]) ? $matches_php_runtime[1] : "Not found";
$configuration_path = isset($matches_configuration[1]) ? $matches_configuration[1] : "Not found";
$num_failures = isset($matches_failure_count[1]) ? $matches_failure_count[1] : "Not found";
$failed_assertion = isset($matches_failure_test_case[1]) ? htmlspecialchars($matches_failure_test_case[1]) : "Not found";
$expected_content = isset($matches_failure_test_case[2]) ? htmlspecialchars($matches_failure_test_case[2]) : "Not found";
$failure_location = isset($matches_failure_location[1]) ? $matches_failure_location[1] : "Not found";
$failure_line = isset($matches_failure_location[2]) ? $matches_failure_location[2] : "Not found";
if (!empty($matches_failures)) {
$tests_assertions_failures = "FAILURES!<br /> Tests: " . $matches_failures[1] . ", Assertions: " . $matches_failures[2] . ", Failures: " . $matches_failures[3];
}
if($num_failures == 1){
$username = Session::get('user_name');
$sql = DB::select("SELECT
*
FROM
php_submits_submission a
LEFT JOIN php_testing_rule b ON a.testing_type = b.testing_name
WHERE
a.username COLLATE utf8mb4_general_ci = '$username'
ORDER BY
a.id DESC
LIMIT 1;
");
$row = $sql[0];
$html1 = htmlspecialchars($row->testing_rule);
$html2 = htmlspecialchars($row->ket);
$diff = "";
$diff_err = "";
// Memecah string HTML menjadi array per baris
$html1_lines = explode("\n", $html1);
$html2_lines = explode("\n", $html2);
$result_content = str_replace(array("\r\n","\r"," "),"", $html1_lines);
$result_content2 = str_replace(array("\r\n","\r"," "),"", $html2_lines);
// Membandingkan setiap baris
for ($i = 0; $i < count($result_content) && $i < count($result_content2); $i++) {
if ($result_content[$i] != $result_content2[$i]) {
$diff .= $html2_lines[$i] . "\n";
$diff .= "\n <br />"; // Menambahkan baris kosong setelah setiap perbedaan
}
}
echo "<br />";
echo "
<table class='table'>
<tr>
<td width='200px'>Codeception version</td>
<td width='10px'>:</td>
<td>$phpunit_version</td>
</tr>
<tr>
<td>Execution time</td>
<td>:</td>
<td>$phpunit_time</td>
</tr>
<tr>
<td>Number of failures</td>
<td>:</td>
<td>$num_failures</td>
</tr>
<tr>
<td>Failure location</td>
<td>:</td>
<td>".$diff."</td>
</tr>
<tr>
<td>Tests Status</td>
<td>:</td>
<td><b>$tests_assertions_failures</b></td>
</tr>
</table>
";
}else{
echo "
<table class='table'>
<tr>
<td width='200px'>Codeception version</td>
<td width='10px'>:</td>
<td>$phpunit_version</td>
</tr>
<tr>
<td>Execution time</td>
<td>:</td>
<td>$phpunit_time</td>
</tr>
<tr>
<td>Memory usage</td>
<td>:</td>
<td>$phpunit_memory</td>
</tr>
<tr>
<td>Tests Run</td>
<td>:</td>
<td><b>$phpunit_stat</b></td>
</tr>
</table>
";
}
}
function codeceptiontesting(){
$val = session('key');
DB::select("TRUNCATE TABLE php_user_submits");
DB::insert("insert into php_user_submits(userid) values ('$val')");
$kode = $_POST['kode'];
if($kode == '1'){
$unitesting_run = 'testLatihanNumberOne';
$testing_number_one = "testing_number_one";
}elseif($kode == '2'){
$unitesting_run = 'testLatihanNumberTwo';
$testing_number_one = "testing_number_two";
}elseif($kode == '3'){
$unitesting_run = 'testLatihanNumberThree';
$testing_number_one = "testing_number_three";
}elseif($kode == '4'){
$unitesting_run = 'testLatihanNumberFour';
$testing_number_one = "testing_number_four";
}elseif($kode == '5'){
$unitesting_run = 'testLatihanNumberFive';
$testing_number_one = "testing_number_five";
}
/** CODECEPTION TEST */
$command = "cd " . base_path() . " && php codecept.phar run Functional LoginTest --filter $unitesting_run"; //(codeception)
//$command = "cd " . base_path() . " && php codecept.phar run Unit PHPBasicTest --filter testLatihanNumberOne";
$command = "cd " . base_path() . " && php codecept.phar run Functional LoginTest --filter $unitesting_run";
//$command = "cd " . base_path() . " && php codecept.phar run Unit PHPBasicTest --filter testLatihanNumberOne";
$output = shell_exec($command);
/** PHPUNIT TEST */
/*$path_test = base_path("phpunit.xml");
$pa = "vendor\bin\phpunit -c $path_test --filter HomepageLayoutTest::$unitesting_run";
$path = base_path($pa);
$output = shell_exec($path);*/
//echo "<pre>$output</pre>";
//echo "<pre>$command</pre>";
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = '$testing_number_one'");
$row = $sql[0];
$html = $row->testing_rule;

View File

@ -79,7 +79,4 @@ function crooms(){
$id = auth()->user()->id;
return view('php.teacher.crooms',['id_user' => $id]);
}
function detail_crooms($id){
echo $id;
}
}

View File

@ -53,10 +53,9 @@ function result_test(){
$row = $sql[0];
$html2 = htmlspecialchars($row->ket);
$test = str_replace(array("\r\n","\r","\n"," "),"",$html2);
$result_content2 = str_replace(array("\r\n","\r"," "),"", $test);
/* $actual = storage_path("app/private/{$username}/{$userfile}");
$php_output = shell_exec("PHP $actual 2>&1");
$test = str_replace(array("\r\n","\r","\n"," "),"",highlight_string($php_output));
@ -67,55 +66,6 @@ function result_test(){
// echo "$value == $sess_name";
}
function result_test_output(){
$uname = DB::select("SELECT * FROM users
WHERE name COLLATE utf8mb4_general_ci IN (SELECT userid FROM php_user_submits) ");
if (!empty($uname)) {
$firstUser = reset($uname); // Get the first element of the array
$sess_name = isset($firstUser->name) ? $firstUser->name : ''; // Access the 'name' property of the first user
}
$task = DB::table('php_submits_submission')->where('username', "$sess_name")->first();
$username = $task->username;
$sql = DB::select("SELECT
*
FROM
php_submits_submission a
LEFT JOIN php_testing_rule b ON a.testing_type = b.testing_name
WHERE
a.username COLLATE utf8mb4_general_ci = '$username'
ORDER BY
a.id DESC
LIMIT 1;
");
$row = $sql[0];
$userfile = $row->userfile;
$ket = htmlspecialchars($row->ket);
$html2 = htmlspecialchars($row->output);
$test = str_replace(array("\r\n","\r","\n"," "),"",$html2);
$result_content2 = str_replace(array("\r\n","\r"," "),"", $test);
$studentFile = storage_path("app/public/uploads/$username/$userfile");
//$studentFile = storage_path("app/public/uploads/$val/GuideA1.php");
ob_start();
include ($studentFile);
$studentOutput = ob_get_clean();
$result_content = str_replace(array("\r\n", "\r", "\n", " "), "", $studentOutput);
return view('php.student.task.result_submssion_task', [
'result_up' => $studentOutput,
]);
ob_end_clean();
// echo "$value == $sess_name";
}
function get_session(){
if (Auth::check()) {

507
iclop.sql
View File

@ -11,7 +11,7 @@
Target Server Version : 100432 (10.4.32-MariaDB)
File Encoding : 65001
Date: 09/05/2025 16:51:28
Date: 05/05/2025 17:22:24
*/
SET NAMES utf8mb4;
@ -87578,9 +87578,8 @@ CREATE TABLE `php_submits_submission` (
`task_topics` bigint NULL DEFAULT NULL,
`task_no` bigint NULL DEFAULT NULL,
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
`testing_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`tipe` enum('github','zip','file') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'file',
`tipe` enum('github','zip','file') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`userfile` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`ket` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
`status_testing` int NULL DEFAULT NULL,
@ -87591,253 +87590,251 @@ CREATE TABLE `php_submits_submission` (
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id`(`task_id` ASC) USING BTREE,
INDEX `android_topic_id`(`testing_type` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 337 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = DYNAMIC;
) ENGINE = InnoDB AUTO_INCREMENT = 256 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of php_submits_submission
-- ----------------------------
INSERT INTO `php_submits_submission` VALUES (1, 10, 1, 7, 1, NULL, 'syahrian5656@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (2, 10, 2, 8, 1, NULL, 'syahrian5656@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:45', '10:17:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (3, 10, 3, 9, 1, NULL, 'syahrian5656@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:17:30', '10:27:15', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (4, 10, 4, 10, 1, NULL, 'syahrian5656@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:27:15', '10:37:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (5, 10, 5, 11, 1, NULL, 'syahrian5656@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:37:51', '10:50:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (6, 10, 1, 7, 1, NULL, 'athallah.alsha@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:40', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (7, 10, 2, 8, 1, NULL, 'athallah.alsha@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:40', '10:19:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (8, 10, 3, 9, 1, NULL, 'athallah.alsha@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:20', '10:28:59', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (9, 10, 4, 10, 1, NULL, 'athallah.alsha@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:28:59', '10:39:17', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (10, 10, 5, 11, 1, NULL, 'athallah.alsha@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:17', '10:51:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (11, 10, 1, 7, 1, NULL, 'albyanagungshafiqri@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (12, 10, 2, 8, 1, NULL, 'albyanagungshafiqri@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:09', '10:18:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (13, 10, 3, 9, 1, NULL, 'albyanagungshafiqri@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:18:18', '10:26:27', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (14, 10, 4, 10, 1, NULL, 'albyanagungshafiqri@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:26:27', '10:36:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (15, 10, 5, 11, 1, NULL, 'albyanagungshafiqri@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:36:30', '10:48:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (16, 10, 1, 7, 1, NULL, 'thoriqfathurrozi@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (17, 10, 2, 8, 1, NULL, 'thoriqfathurrozi@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:48', '10:19:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (18, 10, 3, 9, 1, NULL, 'thoriqfathurrozi@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:36', '10:29:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (19, 10, 4, 10, 1, NULL, 'thoriqfathurrozi@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:29:42', '10:39:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (20, 10, 5, 11, 1, NULL, 'thoriqfathurrozi@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:52', '10:52:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (21, 10, 1, 7, 1, NULL, 'krisnagmerz21@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:04:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (22, 10, 2, 8, 1, NULL, 'krisnagmerz21@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:04:24', '10:08:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (23, 10, 3, 9, 1, NULL, 'krisnagmerz21@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:08:48', '10:15:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (24, 10, 4, 10, 1, NULL, 'krisnagmerz21@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:15:54', '10:26:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (25, 10, 5, 11, 1, NULL, 'krisnagmerz21@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:26:07', '10:38:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (26, 10, 1, 7, 1, NULL, 'indraw910@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:10:27', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (27, 10, 2, 8, 1, NULL, 'indraw910@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:10:27', '10:22:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (28, 10, 3, 9, 1, NULL, 'indraw910@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:54', '10:33:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (29, 10, 4, 10, 1, NULL, 'indraw910@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:33:21', '10:43:31', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (30, 10, 5, 11, 1, NULL, 'indraw910@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:43:31', '10:55:41', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (31, 10, 1, 7, 1, NULL, '2241720114@student.polinema.ac.id', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:39', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (32, 10, 2, 8, 1, NULL, '2241720114@student.polinema.ac.id', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:39', '10:17:28', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (33, 10, 3, 9, 1, NULL, '2241720114@student.polinema.ac.id', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:17:28', '10:26:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (34, 10, 4, 10, 1, NULL, '2241720114@student.polinema.ac.id', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:26:57', '10:37:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (35, 10, 5, 11, 1, NULL, '2241720114@student.polinema.ac.id', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:37:51', '10:50:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (36, 10, 1, 7, 1, NULL, 'daffayudisa09@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:12:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (37, 10, 2, 8, 1, NULL, 'daffayudisa09@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:12:09', '10:24:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (38, 10, 3, 9, 1, NULL, 'daffayudisa09@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:24:18', '10:34:27', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (39, 10, 4, 10, 1, NULL, 'daffayudisa09@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:27', '10:44:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (40, 10, 5, 11, 1, NULL, 'daffayudisa09@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:36', '10:56:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (41, 10, 1, 7, 1, NULL, 'anabellatus@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:11:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (42, 10, 2, 8, 1, NULL, 'anabellatus@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:11:24', '10:22:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (43, 10, 3, 9, 1, NULL, 'anabellatus@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:48', '10:35:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (44, 10, 4, 10, 1, NULL, 'anabellatus@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:35:30', '10:45:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (45, 10, 5, 11, 1, NULL, 'anabellatus@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:45:32', '10:57:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (46, 10, 1, 7, 1, NULL, 'fanesahbi22@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (47, 10, 2, 8, 1, NULL, 'fanesahbi22@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:52', '10:19:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (48, 10, 3, 9, 1, NULL, 'fanesahbi22@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:45', '10:28:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (49, 10, 4, 10, 1, NULL, 'fanesahbi22@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:28:50', '10:39:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (50, 10, 5, 11, 1, NULL, 'fanesahbi22@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:00', '10:51:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (51, 10, 1, 7, 1, NULL, 'putrinorchasana@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:05:34', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (52, 10, 2, 8, 1, NULL, 'putrinorchasana@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:05:34', '10:11:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (53, 10, 3, 9, 1, NULL, 'putrinorchasana@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:11:07', '10:18:37', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (54, 10, 4, 10, 1, NULL, 'putrinorchasana@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:18:37', '10:28:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (55, 10, 5, 11, 1, NULL, 'putrinorchasana@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:28:56', '10:41:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (56, 10, 1, 7, 1, NULL, '2241720031@student.polinema.ac.id', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (57, 10, 2, 8, 1, NULL, '2241720031@student.polinema.ac.id', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:26', '10:16:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (58, 10, 3, 9, 1, NULL, '2241720031@student.polinema.ac.id', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:16:52', '10:29:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (59, 10, 4, 10, 1, NULL, '2241720031@student.polinema.ac.id', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:29:21', '10:39:33', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (60, 10, 5, 11, 1, NULL, '2241720031@student.polinema.ac.id', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:33', '10:51:49', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (61, 10, 1, 7, 1, NULL, 'doniwk1402@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:12:29', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (62, 10, 2, 8, 1, NULL, 'doniwk1402@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:12:29', '10:24:58', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (63, 10, 3, 9, 1, NULL, 'doniwk1402@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:24:58', '10:38:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (64, 10, 4, 10, 1, NULL, 'doniwk1402@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:38:02', '10:48:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (65, 10, 5, 11, 1, NULL, 'doniwk1402@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:48:26', '11:00:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (66, 10, 1, 7, 1, NULL, 'putrinastitidea@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:15:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (67, 10, 2, 8, 1, NULL, 'putrinastitidea@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:15:04', '10:30:08', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (68, 10, 3, 9, 1, NULL, 'putrinastitidea@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:30:08', '10:39:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (69, 10, 4, 10, 1, NULL, 'putrinastitidea@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:39:55', '10:50:01', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (70, 10, 5, 11, 1, NULL, 'putrinastitidea@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:50:01', '11:02:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (71, 10, 1, 7, 1, NULL, 'elvarettas23@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:47', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (72, 10, 2, 8, 1, NULL, 'elvarettas23@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:47', '10:19:34', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (73, 10, 3, 9, 1, NULL, 'elvarettas23@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:34', '10:26:43', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (74, 10, 4, 10, 1, NULL, 'elvarettas23@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:26:43', '10:36:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (75, 10, 5, 11, 1, NULL, 'elvarettas23@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:36:50', '10:49:44', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (76, 10, 1, 7, 1, NULL, 'nargyanti@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:07:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (77, 10, 2, 8, 1, NULL, 'nargyanti@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:07:09', '10:14:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (78, 10, 3, 9, 1, NULL, 'nargyanti@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:24:36', '10:36:05', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (79, 10, 4, 10, 1, NULL, 'nargyanti@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:36:05', '10:46:14', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (80, 10, 5, 11, 1, NULL, 'nargyanti@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:46:14', '10:58:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (81, 10, 1, 7, 1, NULL, 'nafiulalam25@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:11:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (82, 10, 2, 8, 1, NULL, 'nafiulalam25@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:11:18', '10:24:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (83, 10, 3, 9, 1, NULL, 'nafiulalam25@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:48', '10:34:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (84, 10, 4, 10, 1, NULL, 'nafiulalam25@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:42', '10:44:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (85, 10, 5, 11, 1, NULL, 'nafiulalam25@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:52', '10:57:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (86, 10, 1, 7, 1, NULL, 'database.no7@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:10:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (87, 10, 2, 8, 1, NULL, 'database.no7@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:10:54', '10:22:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (88, 10, 3, 9, 1, NULL, 'database.no7@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:06', '10:28:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (89, 10, 4, 10, 1, NULL, 'database.no7@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:28:09', '10:38:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (90, 10, 5, 11, 1, NULL, 'database.no7@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:38:21', '10:50:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (91, 10, 1, 7, 1, NULL, 'muhridlo111@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (92, 10, 2, 8, 1, NULL, 'muhridlo111@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:03', '10:19:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (93, 10, 3, 9, 1, NULL, 'muhridlo111@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:25:03', '10:36:05', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (94, 10, 4, 10, 1, NULL, 'muhridlo111@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:36:05', '10:46:29', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (95, 10, 5, 11, 1, NULL, 'muhridlo111@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:46:29', '10:58:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (96, 10, 1, 7, 1, NULL, 'rafiteguh6@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:12:01', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (97, 10, 2, 8, 1, NULL, 'rafiteguh6@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:12:01', '10:25:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (98, 10, 3, 9, 1, NULL, 'rafiteguh6@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:11:26', '10:18:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (99, 10, 4, 10, 1, NULL, 'rafiteguh6@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:18:52', '10:29:46', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (100, 10, 5, 11, 1, NULL, 'rafiteguh6@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:29:46', '10:42:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (101, 10, 1, 7, 1, NULL, 'malikibrahimdenny@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:05:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (102, 10, 2, 8, 1, NULL, 'malikibrahimdenny@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:05:38', '10:11:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (103, 10, 3, 9, 1, NULL, 'malikibrahimdenny@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:26:32', '10:39:53', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (104, 10, 4, 10, 1, NULL, 'malikibrahimdenny@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:39:53', '10:50:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (105, 10, 5, 11, 1, NULL, 'malikibrahimdenny@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:50:07', '11:02:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (106, 10, 1, 7, 1, NULL, 'byannurcahyo@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (107, 10, 2, 8, 1, NULL, 'byannurcahyo@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:21', '10:26:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (108, 10, 3, 9, 1, NULL, 'byannurcahyo@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:31:54', '10:47:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (109, 10, 4, 10, 1, NULL, 'byannurcahyo@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:47:51', '10:58:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (110, 10, 5, 11, 1, NULL, 'byannurcahyo@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:58:00', '11:10:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (111, 10, 1, 7, 1, NULL, 'afrizaldwiseptian@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:15:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (112, 10, 2, 8, 1, NULL, 'afrizaldwiseptian@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:15:57', '10:31:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (113, 10, 3, 9, 1, NULL, 'afrizaldwiseptian@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:36', '10:34:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (114, 10, 4, 10, 1, NULL, 'afrizaldwiseptian@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:04', '10:44:19', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (115, 10, 5, 11, 1, NULL, 'afrizaldwiseptian@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:19', '10:57:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (116, 10, 1, 7, 1, NULL, 'ihza.nk.160903@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:11:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (117, 10, 2, 8, 1, NULL, 'ihza.nk.160903@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:11:18', '10:22:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (118, 10, 3, 9, 1, NULL, 'ihza.nk.160903@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:15:40', '10:29:08', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (119, 10, 4, 10, 1, NULL, 'ihza.nk.160903@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:29:08', '10:39:19', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (120, 10, 5, 11, 1, NULL, 'ihza.nk.160903@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:19', '10:51:25', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (121, 10, 1, 7, 1, NULL, 'ahmadaria012@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:07:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (122, 10, 2, 8, 1, NULL, 'ahmadaria012@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:07:50', '10:15:40', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (123, 10, 3, 9, 1, NULL, 'ahmadaria012@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:18:30', '10:27:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (124, 10, 4, 10, 1, NULL, 'ahmadaria012@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:27:45', '10:38:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (125, 10, 5, 11, 1, NULL, 'ahmadaria012@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:38:06', '10:50:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (126, 10, 1, 7, 1, NULL, 'andikaputrasamawa@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:15', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (127, 10, 2, 8, 1, NULL, 'andikaputrasamawa@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:15', '10:18:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (128, 10, 3, 9, 1, NULL, 'andikaputrasamawa@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:52', '10:34:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (129, 10, 4, 10, 1, NULL, 'andikaputrasamawa@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:18', '10:44:33', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (130, 10, 5, 11, 1, NULL, 'andikaputrasamawa@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:33', '10:56:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (131, 10, 1, 7, 1, NULL, 'agengabi1801@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:11:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (132, 10, 2, 8, 1, NULL, 'agengabi1801@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:11:26', '10:22:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (133, 10, 3, 9, 1, NULL, 'agengabi1801@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:34:53', '10:51:25', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (134, 10, 4, 10, 1, NULL, 'agengabi1801@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:51:25', '11:01:49', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (135, 10, 5, 11, 1, NULL, 'agengabi1801@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '11:01:49', '11:14:19', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (136, 10, 1, 7, 1, NULL, 'aghisnifadhli@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:18:31', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (137, 10, 2, 8, 1, NULL, 'aghisnifadhli@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:18:31', '10:34:53', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (138, 10, 3, 9, 1, NULL, 'aghisnifadhli@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:21:33', '10:38:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (139, 10, 4, 10, 1, NULL, 'aghisnifadhli@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:38:20', '10:48:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (140, 10, 5, 11, 1, NULL, 'aghisnifadhli@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:48:38', '11:01:08', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (141, 10, 1, 7, 1, NULL, 'agus21apy@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:10:46', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (142, 10, 2, 8, 1, NULL, 'agus21apy@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:10:46', '10:21:33', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (143, 10, 3, 9, 1, NULL, 'agus21apy@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:12:54', '10:24:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (144, 10, 4, 10, 1, NULL, 'agus21apy@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:24:21', '10:34:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (145, 10, 5, 11, 1, NULL, 'agus21apy@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:34:45', '10:47:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (146, 10, 1, 7, 1, NULL, 'abdullahkhaf4b1@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:06:27', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (147, 10, 2, 8, 1, NULL, 'abdullahkhaf4b1@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:06:27', '10:12:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (148, 10, 3, 9, 1, NULL, 'abdullahkhaf4b1@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:25:04', '10:34:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (149, 10, 4, 10, 1, NULL, 'abdullahkhaf4b1@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:06', '10:44:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (150, 10, 5, 11, 1, NULL, 'abdullahkhaf4b1@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:24', '10:56:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (151, 10, 1, 7, 1, NULL, 'iqrimannisa@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (152, 10, 2, 8, 1, NULL, 'iqrimannisa@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:02', '10:25:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (153, 10, 3, 9, 1, NULL, 'iqrimannisa@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:20:48', '10:32:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (154, 10, 4, 10, 1, NULL, 'iqrimannisa@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:32:42', '10:42:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (155, 10, 5, 11, 1, NULL, 'iqrimannisa@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:42:50', '10:55:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (156, 10, 1, 7, 1, NULL, 'aleshariza@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (157, 10, 2, 8, 1, NULL, 'aleshariza@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:54', '10:20:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (158, 10, 3, 9, 1, NULL, 'aleshariza@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:04:04', '10:13:22', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (159, 10, 4, 10, 1, NULL, 'aleshariza@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:13:22', '10:23:39', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (160, 10, 5, 11, 1, NULL, 'aleshariza@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:23:39', '10:36:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (161, 10, 1, 7, 1, NULL, 'rifarosyida2002@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:02:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (162, 10, 2, 8, 1, NULL, 'rifarosyida2002@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:02:02', '10:04:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (163, 10, 3, 9, 1, NULL, 'rifarosyida2002@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:27:36', '10:35:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (164, 10, 4, 10, 1, NULL, 'rifarosyida2002@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:35:38', '10:45:44', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (165, 10, 5, 11, 1, NULL, 'rifarosyida2002@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:45:44', '10:59:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (166, 10, 1, 7, 1, NULL, 'daffamaulanasatria@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (167, 10, 2, 8, 1, NULL, 'daffamaulanasatria@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:18', '10:27:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (168, 10, 3, 9, 1, NULL, 'daffamaulanasatria@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:05:02', '10:16:34', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (169, 10, 4, 10, 1, NULL, 'daffamaulanasatria@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:16:34', '10:26:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (170, 10, 5, 11, 1, NULL, 'daffamaulanasatria@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:26:36', '10:39:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (186, 10, 1, 7, 1, NULL, 'farhanadriansyah@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:02:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (187, 10, 2, 8, 1, NULL, 'farhanadriansyah@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:02:32', '10:05:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (188, 10, 3, 9, 1, NULL, 'farhanadriansyah@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:14:40', '10:23:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (189, 10, 4, 10, 1, NULL, 'farhanadriansyah@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:23:45', '10:33:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (190, 10, 5, 11, 1, NULL, 'farhanadriansyah@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:33:50', '10:46:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (191, 10, 1, 7, 1, NULL, 'makif@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:06:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (192, 10, 2, 8, 1, NULL, 'makif@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:06:55', '10:14:40', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (193, 10, 3, 9, 1, NULL, 'makif@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:44:03', '10:57:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (194, 10, 4, 10, 1, NULL, 'makif@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:57:09', '11:07:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (195, 10, 5, 11, 1, NULL, 'makif@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '11:07:16', '11:19:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (196, 10, 1, 7, 1, NULL, 'leonardo.steven@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:20:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (197, 10, 2, 8, 1, NULL, 'leonardo.steven@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:20:00', '10:44:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (198, 10, 3, 9, 1, NULL, 'leonardo.steven@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:24:56', '10:51:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (199, 10, 4, 10, 1, NULL, 'leonardo.steven@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:51:00', '11:21:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (200, 10, 5, 11, 1, NULL, 'leonardo.steven@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '11:21:06', '11:46:08', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (201, 10, 1, 7, 1, NULL, 'jimmyjonshon@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (202, 10, 2, 8, 1, NULL, 'jimmyjonshon@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:32', '10:24:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (203, 10, 3, 9, 1, NULL, 'jimmyjonshon@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:25:26', '10:39:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (204, 10, 4, 10, 1, NULL, 'jimmyjonshon@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:39:09', '10:49:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (205, 10, 5, 11, 1, NULL, 'jimmyjonshon@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:49:51', '11:02:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (206, 10, 1, 7, 1, NULL, 'richardsoegiarto@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:43', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (207, 10, 2, 8, 1, NULL, 'richardsoegiarto@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:43', '10:25:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (208, 10, 3, 9, 1, NULL, 'richardsoegiarto@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:36', '10:34:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (209, 10, 4, 10, 1, NULL, 'richardsoegiarto@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:04', '10:44:19', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (210, 10, 5, 11, 1, NULL, 'richardsoegiarto@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:19', '10:57:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (211, 10, 1, 7, 1, NULL, 'amaludjir@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:10:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (212, 10, 2, 8, 1, NULL, 'amaludjir@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:10:18', '10:22:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (213, 10, 3, 9, 1, NULL, 'amaludjir@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:36', '10:35:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (214, 10, 4, 10, 1, NULL, 'amaludjir@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:35:04', '10:45:14', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (215, 10, 5, 11, 1, NULL, 'amaludjir@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:45:14', '10:57:34', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (216, 10, 6, 12, 1, NULL, 'syahrian5656@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:50:03', '11:05:33', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (217, 10, 6, 12, 1, NULL, 'athallah.alsha@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:51:24', '11:04:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (218, 10, 6, 12, 1, NULL, 'albyanagungshafiqri@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:48:54', '11:04:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (219, 10, 6, 12, 1, NULL, 'thoriqfathurrozi@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:52:04', '11:05:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (220, 10, 6, 12, 1, NULL, 'krisnagmerz21@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:38:16', '10:53:46', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (221, 10, 6, 12, 1, NULL, 'indraw910@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:55:41', '11:11:17', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (222, 10, 6, 12, 1, NULL, '2241720114@student.polinema.ac.id', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:50:00', '11:06:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (223, 10, 6, 12, 1, NULL, 'daffayudisa09@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:56:42', '11:11:58', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (224, 10, 6, 12, 1, NULL, 'anabellatus@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:56', '11:14:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (225, 10, 6, 12, 1, NULL, 'fanesahbi22@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:51:42', '11:08:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (226, 10, 6, 12, 1, NULL, 'putrinorchasana@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:41:26', '10:56:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (227, 10, 6, 12, 1, NULL, '2241720031@student.polinema.ac.id', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:51:49', '11:06:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (228, 10, 6, 12, 1, NULL, 'doniwk1402@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:00:38', '11:14:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (229, 10, 6, 12, 1, NULL, 'putrinastitidea@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:02:54', '11:17:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (230, 10, 6, 12, 1, NULL, 'elvarettas23@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:49:44', '11:05:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (231, 10, 6, 12, 1, NULL, 'nargyanti@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:58:20', '11:12:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (232, 10, 6, 12, 1, NULL, 'nafiulalam25@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:04', '11:11:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (233, 10, 6, 12, 1, NULL, 'database.no7@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:50:48', '11:06:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (234, 10, 6, 12, 1, NULL, 'muhridlo111@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:58:55', '11:13:31', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (235, 10, 6, 12, 1, NULL, 'rafiteguh6@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:42:04', '10:55:22', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (236, 10, 6, 12, 1, NULL, 'malikibrahimdenny@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:02:55', '11:17:43', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (237, 10, 6, 12, 1, NULL, 'byannurcahyo@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:10:21', '11:24:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (238, 10, 6, 12, 1, NULL, 'afrizaldwiseptian@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:03', '11:11:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (239, 10, 6, 12, 1, NULL, 'ihza.nk.160903@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:51:25', '11:06:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (240, 10, 6, 12, 1, NULL, 'ahmadaria012@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:50:26', '11:02:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (241, 10, 6, 12, 1, NULL, 'andikaputrasamawa@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:56:57', '11:11:40', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (242, 10, 6, 12, 1, NULL, 'agengabi1801@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:14:19', '11:26:49', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (243, 10, 6, 12, 1, NULL, 'aghisnifadhli@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:01:08', '11:14:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (244, 10, 6, 12, 1, NULL, 'agus21apy@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:47:16', '11:02:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (245, 10, 6, 12, 1, NULL, 'abdullahkhaf4b1@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:56:56', '11:10:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (246, 10, 6, 12, 1, NULL, 'iqrimannisa@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:55:02', '11:10:14', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (247, 10, 6, 12, 1, NULL, 'aleshariza@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:36:03', '10:49:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (248, 10, 6, 12, 1, NULL, 'rifarosyida2002@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:59:06', '11:14:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (249, 10, 6, 12, 1, NULL, 'daffamaulanasatria@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:39:04', '10:55:22', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (250, 10, 6, 12, 1, NULL, 'farhanadriansyah@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:46:20', '11:00:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (251, 10, 6, 12, 1, NULL, 'makif@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:19:42', '11:33:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (252, 10, 6, 12, 1, NULL, 'leonardo.steven@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:46:08', '12:34:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (253, 10, 6, 12, 1, NULL, 'jimmyjonshon@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:02:30', '11:26:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (254, 10, 6, 12, 1, NULL, 'richardsoegiarto@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:07', '11:11:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (255, 10, 6, 12, 1, NULL, 'amaludjir@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:34', '11:09:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (335, 10, 1, 7, 1, 'Amal Dermawan Udjir', 'amaludjir@gmail.com', 'testing_number_one', 'file', 'Test1.php', '<!doctype html>\r\n<html lang=\"en\">\r\n<head>\r\n<title>Belajar Membuat Heading dan Paragraph</title>\r\n</head>\r\n<body>\r\n<h1>Heading ke-1</h1>\r\n<h2>Heading ke-2</h2>\r\n<h3>Heading ke-3</h3>\r\n<h4>Heading ke-4</h4>\r\n<h5>Heading ke-5</h5>\r\n<h6>Heading ke-6</h6>\r\n<p> <strong>ini contoh paragraph</strong></p>\r\n</body>\r\n</html>', 0, '10:00:00', '10:35:39', '2025-05-09', NULL);
INSERT INTO `php_submits_submission` VALUES (336, 10, 1, 7, 1, 'Amal Dermawan Udjir', 'amaludjir@gmail.com', 'testing_number_one', 'file', 'Test1.php', '<!doctype html>\r\n<html lang=\"en\">\r\n<head>\r\n<title>Belajar Membuat Heading dan Paragraph</title>\r\n</head>\r\n<body>\r\n<h1>Heading ke-1</h1>\r\n<h2>Heading ke-2</h2>\r\n<h3>Heading ke-3</h3>\r\n<h4>Heading ke-4</h4>\r\n<h5>Heading ke-5</h5>\r\n<h6>Heading ke-6</h6>\r\n<p> <strong>ini contoh paragraph</strong></p>\r\n</body>\r\n</html>', NULL, '10:00:00', '10:42:54', '2025-05-09', NULL);
INSERT INTO `php_submits_submission` VALUES (1, 10, 1, 7, 1, 'syahrian5656@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (2, 10, 2, 8, 1, 'syahrian5656@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:45', '10:17:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (3, 10, 3, 9, 1, 'syahrian5656@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:17:30', '10:27:15', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (4, 10, 4, 10, 1, 'syahrian5656@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:27:15', '10:37:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (5, 10, 5, 11, 1, 'syahrian5656@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:37:51', '10:50:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (6, 10, 1, 7, 1, 'athallah.alsha@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:40', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (7, 10, 2, 8, 1, 'athallah.alsha@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:40', '10:19:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (8, 10, 3, 9, 1, 'athallah.alsha@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:20', '10:28:59', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (9, 10, 4, 10, 1, 'athallah.alsha@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:28:59', '10:39:17', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (10, 10, 5, 11, 1, 'athallah.alsha@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:17', '10:51:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (11, 10, 1, 7, 1, 'albyanagungshafiqri@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (12, 10, 2, 8, 1, 'albyanagungshafiqri@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:09', '10:18:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (13, 10, 3, 9, 1, 'albyanagungshafiqri@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:18:18', '10:26:27', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (14, 10, 4, 10, 1, 'albyanagungshafiqri@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:26:27', '10:36:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (15, 10, 5, 11, 1, 'albyanagungshafiqri@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:36:30', '10:48:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (16, 10, 1, 7, 1, 'thoriqfathurrozi@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (17, 10, 2, 8, 1, 'thoriqfathurrozi@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:48', '10:19:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (18, 10, 3, 9, 1, 'thoriqfathurrozi@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:36', '10:29:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (19, 10, 4, 10, 1, 'thoriqfathurrozi@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:29:42', '10:39:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (20, 10, 5, 11, 1, 'thoriqfathurrozi@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:52', '10:52:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (21, 10, 1, 7, 1, 'krisnagmerz21@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:04:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (22, 10, 2, 8, 1, 'krisnagmerz21@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:04:24', '10:08:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (23, 10, 3, 9, 1, 'krisnagmerz21@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:08:48', '10:15:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (24, 10, 4, 10, 1, 'krisnagmerz21@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:15:54', '10:26:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (25, 10, 5, 11, 1, 'krisnagmerz21@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:26:07', '10:38:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (26, 10, 1, 7, 1, 'indraw910@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:10:27', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (27, 10, 2, 8, 1, 'indraw910@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:10:27', '10:22:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (28, 10, 3, 9, 1, 'indraw910@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:54', '10:33:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (29, 10, 4, 10, 1, 'indraw910@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:33:21', '10:43:31', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (30, 10, 5, 11, 1, 'indraw910@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:43:31', '10:55:41', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (31, 10, 1, 7, 1, '2241720114@student.polinema.ac.id', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:39', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (32, 10, 2, 8, 1, '2241720114@student.polinema.ac.id', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:39', '10:17:28', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (33, 10, 3, 9, 1, '2241720114@student.polinema.ac.id', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:17:28', '10:26:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (34, 10, 4, 10, 1, '2241720114@student.polinema.ac.id', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:26:57', '10:37:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (35, 10, 5, 11, 1, '2241720114@student.polinema.ac.id', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:37:51', '10:50:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (36, 10, 1, 7, 1, 'daffayudisa09@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:12:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (37, 10, 2, 8, 1, 'daffayudisa09@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:12:09', '10:24:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (38, 10, 3, 9, 1, 'daffayudisa09@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:24:18', '10:34:27', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (39, 10, 4, 10, 1, 'daffayudisa09@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:27', '10:44:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (40, 10, 5, 11, 1, 'daffayudisa09@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:36', '10:56:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (41, 10, 1, 7, 1, 'anabellatus@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:11:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (42, 10, 2, 8, 1, 'anabellatus@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:11:24', '10:22:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (43, 10, 3, 9, 1, 'anabellatus@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:48', '10:35:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (44, 10, 4, 10, 1, 'anabellatus@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:35:30', '10:45:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (45, 10, 5, 11, 1, 'anabellatus@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:45:32', '10:57:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (46, 10, 1, 7, 1, 'fanesahbi22@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (47, 10, 2, 8, 1, 'fanesahbi22@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:52', '10:19:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (48, 10, 3, 9, 1, 'fanesahbi22@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:45', '10:28:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (49, 10, 4, 10, 1, 'fanesahbi22@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:28:50', '10:39:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (50, 10, 5, 11, 1, 'fanesahbi22@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:00', '10:51:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (51, 10, 1, 7, 1, 'putrinorchasana@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:05:34', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (52, 10, 2, 8, 1, 'putrinorchasana@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:05:34', '10:11:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (53, 10, 3, 9, 1, 'putrinorchasana@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:11:07', '10:18:37', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (54, 10, 4, 10, 1, 'putrinorchasana@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:18:37', '10:28:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (55, 10, 5, 11, 1, 'putrinorchasana@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:28:56', '10:41:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (56, 10, 1, 7, 1, '2241720031@student.polinema.ac.id', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (57, 10, 2, 8, 1, '2241720031@student.polinema.ac.id', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:26', '10:16:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (58, 10, 3, 9, 1, '2241720031@student.polinema.ac.id', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:16:52', '10:29:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (59, 10, 4, 10, 1, '2241720031@student.polinema.ac.id', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:29:21', '10:39:33', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (60, 10, 5, 11, 1, '2241720031@student.polinema.ac.id', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:33', '10:51:49', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (61, 10, 1, 7, 1, 'doniwk1402@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:12:29', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (62, 10, 2, 8, 1, 'doniwk1402@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:12:29', '10:24:58', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (63, 10, 3, 9, 1, 'doniwk1402@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:24:58', '10:38:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (64, 10, 4, 10, 1, 'doniwk1402@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:38:02', '10:48:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (65, 10, 5, 11, 1, 'doniwk1402@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:48:26', '11:00:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (66, 10, 1, 7, 1, 'putrinastitidea@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:15:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (67, 10, 2, 8, 1, 'putrinastitidea@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:15:04', '10:30:08', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (68, 10, 3, 9, 1, 'putrinastitidea@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:30:08', '10:39:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (69, 10, 4, 10, 1, 'putrinastitidea@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:39:55', '10:50:01', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (70, 10, 5, 11, 1, 'putrinastitidea@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:50:01', '11:02:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (71, 10, 1, 7, 1, 'elvarettas23@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:47', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (72, 10, 2, 8, 1, 'elvarettas23@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:47', '10:19:34', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (73, 10, 3, 9, 1, 'elvarettas23@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:34', '10:26:43', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (74, 10, 4, 10, 1, 'elvarettas23@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:26:43', '10:36:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (75, 10, 5, 11, 1, 'elvarettas23@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:36:50', '10:49:44', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (76, 10, 1, 7, 1, 'nargyanti@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:07:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (77, 10, 2, 8, 1, 'nargyanti@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:07:09', '10:14:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (78, 10, 3, 9, 1, 'nargyanti@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:24:36', '10:36:05', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (79, 10, 4, 10, 1, 'nargyanti@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:36:05', '10:46:14', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (80, 10, 5, 11, 1, 'nargyanti@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:46:14', '10:58:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (81, 10, 1, 7, 1, 'nafiulalam25@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:11:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (82, 10, 2, 8, 1, 'nafiulalam25@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:11:18', '10:24:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (83, 10, 3, 9, 1, 'nafiulalam25@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:48', '10:34:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (84, 10, 4, 10, 1, 'nafiulalam25@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:42', '10:44:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (85, 10, 5, 11, 1, 'nafiulalam25@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:52', '10:57:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (86, 10, 1, 7, 1, 'database.no7@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:10:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (87, 10, 2, 8, 1, 'database.no7@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:10:54', '10:22:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (88, 10, 3, 9, 1, 'database.no7@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:19:06', '10:28:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (89, 10, 4, 10, 1, 'database.no7@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:28:09', '10:38:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (90, 10, 5, 11, 1, 'database.no7@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:38:21', '10:50:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (91, 10, 1, 7, 1, 'muhridlo111@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:08:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (92, 10, 2, 8, 1, 'muhridlo111@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:08:03', '10:19:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (93, 10, 3, 9, 1, 'muhridlo111@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:25:03', '10:36:05', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (94, 10, 4, 10, 1, 'muhridlo111@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:36:05', '10:46:29', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (95, 10, 5, 11, 1, 'muhridlo111@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:46:29', '10:58:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (96, 10, 1, 7, 1, 'rafiteguh6@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:12:01', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (97, 10, 2, 8, 1, 'rafiteguh6@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:12:01', '10:25:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (98, 10, 3, 9, 1, 'rafiteguh6@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:11:26', '10:18:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (99, 10, 4, 10, 1, 'rafiteguh6@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:18:52', '10:29:46', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (100, 10, 5, 11, 1, 'rafiteguh6@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:29:46', '10:42:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (101, 10, 1, 7, 1, 'malikibrahimdenny@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:05:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (102, 10, 2, 8, 1, 'malikibrahimdenny@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:05:38', '10:11:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (103, 10, 3, 9, 1, 'malikibrahimdenny@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:26:32', '10:39:53', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (104, 10, 4, 10, 1, 'malikibrahimdenny@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:39:53', '10:50:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (105, 10, 5, 11, 1, 'malikibrahimdenny@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:50:07', '11:02:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (106, 10, 1, 7, 1, 'byannurcahyo@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (107, 10, 2, 8, 1, 'byannurcahyo@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:21', '10:26:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (108, 10, 3, 9, 1, 'byannurcahyo@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:31:54', '10:47:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (109, 10, 4, 10, 1, 'byannurcahyo@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:47:51', '10:58:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (110, 10, 5, 11, 1, 'byannurcahyo@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:58:00', '11:10:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (111, 10, 1, 7, 1, 'afrizaldwiseptian@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:15:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (112, 10, 2, 8, 1, 'afrizaldwiseptian@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:15:57', '10:31:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (113, 10, 3, 9, 1, 'afrizaldwiseptian@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:36', '10:34:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (114, 10, 4, 10, 1, 'afrizaldwiseptian@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:04', '10:44:19', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (115, 10, 5, 11, 1, 'afrizaldwiseptian@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:19', '10:57:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (116, 10, 1, 7, 1, 'ihza.nk.160903@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:11:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (117, 10, 2, 8, 1, 'ihza.nk.160903@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:11:18', '10:22:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (118, 10, 3, 9, 1, 'ihza.nk.160903@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:15:40', '10:29:08', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (119, 10, 4, 10, 1, 'ihza.nk.160903@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:29:08', '10:39:19', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (120, 10, 5, 11, 1, 'ihza.nk.160903@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:39:19', '10:51:25', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (121, 10, 1, 7, 1, 'ahmadaria012@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:07:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (122, 10, 2, 8, 1, 'ahmadaria012@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:07:50', '10:15:40', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (123, 10, 3, 9, 1, 'ahmadaria012@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:18:30', '10:27:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (124, 10, 4, 10, 1, 'ahmadaria012@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:27:45', '10:38:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (125, 10, 5, 11, 1, 'ahmadaria012@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:38:06', '10:50:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (126, 10, 1, 7, 1, 'andikaputrasamawa@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:15', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (127, 10, 2, 8, 1, 'andikaputrasamawa@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:15', '10:18:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (128, 10, 3, 9, 1, 'andikaputrasamawa@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:52', '10:34:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (129, 10, 4, 10, 1, 'andikaputrasamawa@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:18', '10:44:33', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (130, 10, 5, 11, 1, 'andikaputrasamawa@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:33', '10:56:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (131, 10, 1, 7, 1, 'agengabi1801@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:11:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (132, 10, 2, 8, 1, 'agengabi1801@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:11:26', '10:22:52', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (133, 10, 3, 9, 1, 'agengabi1801@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:34:53', '10:51:25', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (134, 10, 4, 10, 1, 'agengabi1801@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:51:25', '11:01:49', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (135, 10, 5, 11, 1, 'agengabi1801@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '11:01:49', '11:14:19', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (136, 10, 1, 7, 1, 'aghisnifadhli@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:18:31', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (137, 10, 2, 8, 1, 'aghisnifadhli@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:18:31', '10:34:53', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (138, 10, 3, 9, 1, 'aghisnifadhli@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:21:33', '10:38:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (139, 10, 4, 10, 1, 'aghisnifadhli@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:38:20', '10:48:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (140, 10, 5, 11, 1, 'aghisnifadhli@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:48:38', '11:01:08', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (141, 10, 1, 7, 1, 'agus21apy@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:10:46', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (142, 10, 2, 8, 1, 'agus21apy@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:10:46', '10:21:33', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (143, 10, 3, 9, 1, 'agus21apy@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:12:54', '10:24:21', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (144, 10, 4, 10, 1, 'agus21apy@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:24:21', '10:34:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (145, 10, 5, 11, 1, 'agus21apy@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:34:45', '10:47:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (146, 10, 1, 7, 1, 'abdullahkhaf4b1@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:06:27', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (147, 10, 2, 8, 1, 'abdullahkhaf4b1@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:06:27', '10:12:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (148, 10, 3, 9, 1, 'abdullahkhaf4b1@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:25:04', '10:34:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (149, 10, 4, 10, 1, 'abdullahkhaf4b1@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:06', '10:44:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (150, 10, 5, 11, 1, 'abdullahkhaf4b1@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:24', '10:56:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (151, 10, 1, 7, 1, 'iqrimannisa@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (152, 10, 2, 8, 1, 'iqrimannisa@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:02', '10:25:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (153, 10, 3, 9, 1, 'iqrimannisa@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:20:48', '10:32:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (154, 10, 4, 10, 1, 'iqrimannisa@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:32:42', '10:42:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (155, 10, 5, 11, 1, 'iqrimannisa@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:42:50', '10:55:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (156, 10, 1, 7, 1, 'aleshariza@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:09:54', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (157, 10, 2, 8, 1, 'aleshariza@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:09:54', '10:20:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (158, 10, 3, 9, 1, 'aleshariza@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:04:04', '10:13:22', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (159, 10, 4, 10, 1, 'aleshariza@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:13:22', '10:23:39', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (160, 10, 5, 11, 1, 'aleshariza@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:23:39', '10:36:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (161, 10, 1, 7, 1, 'rifarosyida2002@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:02:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (162, 10, 2, 8, 1, 'rifarosyida2002@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:02:02', '10:04:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (163, 10, 3, 9, 1, 'rifarosyida2002@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:27:36', '10:35:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (164, 10, 4, 10, 1, 'rifarosyida2002@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:35:38', '10:45:44', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (165, 10, 5, 11, 1, 'rifarosyida2002@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:45:44', '10:59:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (166, 10, 1, 7, 1, 'daffamaulanasatria@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (167, 10, 2, 8, 1, 'daffamaulanasatria@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:18', '10:27:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (168, 10, 3, 9, 1, 'daffamaulanasatria@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:05:02', '10:16:34', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (169, 10, 4, 10, 1, 'daffamaulanasatria@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:16:34', '10:26:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (170, 10, 5, 11, 1, 'daffamaulanasatria@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:26:36', '10:39:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (186, 10, 1, 7, 1, 'farhanadriansyah@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:02:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (187, 10, 2, 8, 1, 'farhanadriansyah@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:02:32', '10:05:02', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (188, 10, 3, 9, 1, 'farhanadriansyah@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:14:40', '10:23:45', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (189, 10, 4, 10, 1, 'farhanadriansyah@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:23:45', '10:33:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (190, 10, 5, 11, 1, 'farhanadriansyah@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:33:50', '10:46:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (191, 10, 1, 7, 1, 'makif@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:06:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (192, 10, 2, 8, 1, 'makif@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:06:55', '10:14:40', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (193, 10, 3, 9, 1, 'makif@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:44:03', '10:57:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (194, 10, 4, 10, 1, 'makif@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:57:09', '11:07:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (195, 10, 5, 11, 1, 'makif@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '11:07:16', '11:19:42', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (196, 10, 1, 7, 1, 'leonardo.steven@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:20:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (197, 10, 2, 8, 1, 'leonardo.steven@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:20:00', '10:44:03', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (198, 10, 3, 9, 1, 'leonardo.steven@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:24:56', '10:51:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (199, 10, 4, 10, 1, 'leonardo.steven@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:51:00', '11:21:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (200, 10, 5, 11, 1, 'leonardo.steven@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '11:21:06', '11:46:08', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (201, 10, 1, 7, 1, 'jimmyjonshon@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (202, 10, 2, 8, 1, 'jimmyjonshon@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:32', '10:24:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (203, 10, 3, 9, 1, 'jimmyjonshon@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:25:26', '10:39:09', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (204, 10, 4, 10, 1, 'jimmyjonshon@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:39:09', '10:49:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (205, 10, 5, 11, 1, 'jimmyjonshon@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:49:51', '11:02:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (206, 10, 1, 7, 1, 'richardsoegiarto@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:13:43', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (207, 10, 2, 8, 1, 'richardsoegiarto@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:13:43', '10:25:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (208, 10, 3, 9, 1, 'richardsoegiarto@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:36', '10:34:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (209, 10, 4, 10, 1, 'richardsoegiarto@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:34:04', '10:44:19', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (210, 10, 5, 11, 1, 'richardsoegiarto@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:44:19', '10:57:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (211, 10, 1, 7, 1, 'amaludjir@gmail.com', 'testing_number_one', 'file', 'GuideA1.php', NULL, 1, '10:00:00', '10:10:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (212, 10, 2, 8, 1, 'amaludjir@gmail.com', 'testing_number_two', 'file', 'GuideA2.php', NULL, 1, '10:10:18', '10:22:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (213, 10, 3, 9, 1, 'amaludjir@gmail.com', 'testing_number_three', 'file', 'GuideA3.php', NULL, 1, '10:22:36', '10:35:04', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (214, 10, 4, 10, 1, 'amaludjir@gmail.com', 'testing_number_four', 'file', 'GuideA4.php', NULL, 1, '10:35:04', '10:45:14', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (215, 10, 5, 11, 1, 'amaludjir@gmail.com', 'testing_number_five', 'file', 'GuideA5.php', NULL, 1, '10:45:14', '10:57:34', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (216, 10, 6, 12, 1, 'syahrian5656@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:50:03', '11:05:33', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (217, 10, 6, 12, 1, 'athallah.alsha@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:51:24', '11:04:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (218, 10, 6, 12, 1, 'albyanagungshafiqri@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:48:54', '11:04:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (219, 10, 6, 12, 1, 'thoriqfathurrozi@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:52:04', '11:05:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (220, 10, 6, 12, 1, 'krisnagmerz21@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:38:16', '10:53:46', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (221, 10, 6, 12, 1, 'indraw910@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:55:41', '11:11:17', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (222, 10, 6, 12, 1, '2241720114@student.polinema.ac.id', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:50:00', '11:06:48', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (223, 10, 6, 12, 1, 'daffayudisa09@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:56:42', '11:11:58', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (224, 10, 6, 12, 1, 'anabellatus@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:56', '11:14:20', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (225, 10, 6, 12, 1, 'fanesahbi22@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:51:42', '11:08:24', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (226, 10, 6, 12, 1, 'putrinorchasana@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:41:26', '10:56:56', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (227, 10, 6, 12, 1, '2241720031@student.polinema.ac.id', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:51:49', '11:06:07', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (228, 10, 6, 12, 1, 'doniwk1402@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:00:38', '11:14:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (229, 10, 6, 12, 1, 'putrinastitidea@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:02:54', '11:17:06', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (230, 10, 6, 12, 1, 'elvarettas23@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:49:44', '11:05:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (231, 10, 6, 12, 1, 'nargyanti@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:58:20', '11:12:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (232, 10, 6, 12, 1, 'nafiulalam25@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:04', '11:11:16', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (233, 10, 6, 12, 1, 'database.no7@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:50:48', '11:06:36', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (234, 10, 6, 12, 1, 'muhridlo111@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:58:55', '11:13:31', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (235, 10, 6, 12, 1, 'rafiteguh6@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:42:04', '10:55:22', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (236, 10, 6, 12, 1, 'malikibrahimdenny@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:02:55', '11:17:43', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (237, 10, 6, 12, 1, 'byannurcahyo@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:10:21', '11:24:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (238, 10, 6, 12, 1, 'afrizaldwiseptian@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:03', '11:11:57', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (239, 10, 6, 12, 1, 'ihza.nk.160903@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:51:25', '11:06:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (240, 10, 6, 12, 1, 'ahmadaria012@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:50:26', '11:02:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (241, 10, 6, 12, 1, 'andikaputrasamawa@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:56:57', '11:11:40', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (242, 10, 6, 12, 1, 'agengabi1801@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:14:19', '11:26:49', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (243, 10, 6, 12, 1, 'aghisnifadhli@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:01:08', '11:14:26', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (244, 10, 6, 12, 1, 'agus21apy@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:47:16', '11:02:00', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (245, 10, 6, 12, 1, 'abdullahkhaf4b1@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:56:56', '11:10:38', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (246, 10, 6, 12, 1, 'iqrimannisa@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:55:02', '11:10:14', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (247, 10, 6, 12, 1, 'aleshariza@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:36:03', '10:49:51', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (248, 10, 6, 12, 1, 'rifarosyida2002@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:59:06', '11:14:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (249, 10, 6, 12, 1, 'daffamaulanasatria@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:39:04', '10:55:22', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (250, 10, 6, 12, 1, 'farhanadriansyah@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:46:20', '11:00:50', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (251, 10, 6, 12, 1, 'makif@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:19:42', '11:33:18', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (252, 10, 6, 12, 1, 'leonardo.steven@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:46:08', '12:34:32', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (253, 10, 6, 12, 1, 'jimmyjonshon@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '11:02:30', '11:26:30', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (254, 10, 6, 12, 1, 'richardsoegiarto@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:07', '11:11:55', '2024-05-31', NULL);
INSERT INTO `php_submits_submission` VALUES (255, 10, 6, 12, 1, 'amaludjir@gmail.com', 'testing_number_six', 'file', 'GuideA6.php', NULL, 1, '10:57:34', '11:09:48', '2024-05-31', NULL);
-- ----------------------------
-- Table structure for php_task
@ -87884,21 +87881,19 @@ DROP TABLE IF EXISTS `php_testing_rule`;
CREATE TABLE `php_testing_rule` (
`id` int NOT NULL AUTO_INCREMENT,
`testing_rule` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`output` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`testing_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of php_testing_rule
-- ----------------------------
INSERT INTO `php_testing_rule` VALUES (1, '<!doctype html>\r\n<html lang=\"en\">\r\n<head>\r\n<title>Belajar Membuat Heading dan Paragraph</title>\r\n</head>\r\n<body>\r\n<h1>Heading ke-1</h1>\r\n<h2>Heading ke-2</h2>\r\n<h3>Heading ke-3</h3>\r\n<h4>Heading ke-4</h4>\r\n<h5>Heading ke-5</h5>\r\n<h6>Heading ke-6</h6>\r\n<p> <strong>ini contoh paragraph</strong></p>\r\n</body>\r\n</html>', '1', 'testing_number_one');
INSERT INTO `php_testing_rule` VALUES (2, '<?php\r\n $a = 3; \r\n $b = 3; \r\n echo $result = $a * $b;\r\n?>', '9', 'testing_number_two');
INSERT INTO `php_testing_rule` VALUES (3, '<?php\r\n\r\n$nama = \"Ali Akbar\";\r\n$umur = 20;\r\n$tinggi = 172.5;\r\n$aktif = true;\r\n\r\n$gaji_pokok = 1000000; \r\n$gaji_bulanan = 0;\r\n$gaji_per_tahun = 0;\r\n$ppn = 0;\r\n$gaji_setelah_ppn = 0;\r\n\r\n$gaji_bulanan = $gaji_pokok * 0.5;\r\n\r\n$gaji_per_tahun = $gaji_bulanan * 12;\r\n\r\n$ppn = $gaji_per_tahun * 0.10;\r\n\r\n$gaji_setelah_ppn = $gaji_per_tahun - $ppn;\r\n\r\necho \"Nama : $nama <br>\";\r\necho \"Umur : $umur <br>\";\r\necho \"Tinggi : $tinggi <br>\";\r\necho \"Aktif : $aktif <br>\";\r\necho \"Gaji Pokok : $gaji_pokok <br>\";\r\necho \"Gaji Bulanan : $gaji_bulanan <br>\";\r\necho \"Gaji Per Tahun : $gaji_per_tahun <br>\";\r\necho \"PPN : $ppn <br>\";\r\necho \"Gaji Setelah PPN : $gaji_setelah_ppn <br>\";\r\n\r\n?>', 'Nama : Ali Akbar\r\nUmur : 20\r\nTinggi : 172.5\r\nAktif : 1\r\nGaji Pokok : 1000000\r\nGaji Bulanan : 500000\r\nGaji Per Tahun : 6000000\r\nPPN : 600000\r\nGaji Setelah PPN : 5400000', 'testing_number_three');
INSERT INTO `php_testing_rule` VALUES (4, 'php_testing_rule', NULL, 'testMethodPOST');
INSERT INTO `php_testing_rule` VALUES (5, '<?php\r\n\r\n$nilai = 75;\r\n\r\nif ($nilai >= 70) {\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Anda lulus!\";\r\n}\r\n\r\necho \"<br><br>\";\r\n$nilai = 55;\r\nif ($nilai >= 70) {\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Anda lulus!\";\r\n} else {\r\n echo \"Nilai Anda:\".$nilai.\"<br>\";\r\n echo \"Anda tidak lulus.\";\r\n}\r\n\r\necho \"<br><br>\";\r\n$nilai = \"B\";\r\nswitch ($nilai){\r\n case \"A\":\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Pertahankan prestasi!\";\r\n break;\r\n case \"B\":\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Cukup baik, terus tingkatkan!\";\r\n break;\r\n case \"C\":\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Perlu lebih banyak belajar.\";\r\n break;\r\n default:\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Maaf, tidak ada keterangan.\";\r\n}\r\n?>', NULL, 'testing_number_four');
INSERT INTO `php_testing_rule` VALUES (6, '<?php\r\n$angka = 1;\r\necho \"Perulangan while:<br>\";\r\nwhile ($angka <= 5) {\r\n echo \"Angka: $angka <br>\";\r\n $angka++;\r\n}\r\necho \"<br>\";\r\n\r\necho \"Perulangan for:<br>\";\r\nfor ($i = 1; $i <= 5; $i++) {\r\n echo \"Angka: $i <br>\";\r\n}\r\necho \"<br>\";\r\n\r\n$angka = 1;\r\necho \"Perulangan do-while:<br>\";\r\ndo {\r\n echo \"Angka: $angka <br>\";\r\n $angka++;\r\n} while ($angka <= 5);\r\n\r\n', NULL, 'testing_number_five');
INSERT INTO `php_testing_rule` VALUES (8, '<?php \r\n$bilangan = array(1, 2, 3, 4, 5);\r\n$nama = array(\"John\", \"Doe\", \"Jane\");\r\n$status = array(true, false, true);\r\n\r\necho \"Nama pertama: \" . $nama[0] . \"<br>\";\r\necho \"Status kedua: \" . ($status[1] ? \"Aktif\" : \"Tidak Aktif\") . \"<br>\";\r\n\r\n$bilangan[] = 6;\r\nunset($nama[0]);\r\n\r\n$posisi = array_search(\"Doe\", $nama);\r\necho \"Posisi Nama Doe Terletak Pada Array Ke : \". $posisi . \"<br>\";;\r\n\r\n$jumlah_nama = count($nama);\r\necho \"Jumlah Nama Pada Array Adalah : \". $jumlah_nama . \"<br>\";\r\n\r\narray_push($nama, \"Smith\");\r\n$elemen_terakhir = array_pop($nama);\r\necho \"Elemen baru ditambahkan ke Array adalah : \". $elemen_terakhir . \"<br>\";\r\n', NULL, 'testing_number_six');
INSERT INTO `php_testing_rule` VALUES (1, '<!doctype html>\r\n<html lang=\"en\">\r\n<head>\r\n<title>Belajar Membuat Heading dan Paragraph</title>\r\n</head>\r\n<body>\r\n<h1>Heading ke-1</h1>\r\n<h2>Heading ke-2</h2>\r\n<h3>Heading ke-3</h3>\r\n<h4>Heading ke-4</h4>\r\n<h5>Heading ke-5</h5>\r\n<h6>Heading ke-6</h6>\r\n<p> <strong>ini contoh paragraph</strong></p>\r\n</body>\r\n</html>', 'testing_number_one');
INSERT INTO `php_testing_rule` VALUES (2, '<?php\r\n $a = 3; \r\n $b = 3; \r\n echo $result = $a * $b;\r\n?>', 'testing_number_two');
INSERT INTO `php_testing_rule` VALUES (4, 'php_testing_rule', 'testMethodPOST');
INSERT INTO `php_testing_rule` VALUES (5, '<?php\r\n\r\n$nilai = 75;\r\n\r\nif ($nilai >= 70) {\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Anda lulus!\";\r\n}\r\n\r\necho \"<br><br>\";\r\n$nilai = 55;\r\nif ($nilai >= 70) {\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Anda lulus!\";\r\n} else {\r\n echo \"Nilai Anda:\".$nilai.\"<br>\";\r\n echo \"Anda tidak lulus.\";\r\n}\r\n\r\necho \"<br><br>\";\r\n$nilai = \"B\";\r\nswitch ($nilai){\r\n case \"A\":\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Pertahankan prestasi!\";\r\n break;\r\n case \"B\":\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Cukup baik, terus tingkatkan!\";\r\n break;\r\n case \"C\":\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Perlu lebih banyak belajar.\";\r\n break;\r\n default:\r\n echo \"Nilai Anda: \" . $nilai . \"<br>\";\r\n echo \"Maaf, tidak ada keterangan.\";\r\n}\r\n?>', 'testing_number_three');
INSERT INTO `php_testing_rule` VALUES (6, '<?php\r\n$angka = 1;\r\necho \"Perulangan while:<br>\";\r\nwhile ($angka <= 5) {\r\n echo \"Angka: $angka <br>\";\r\n $angka++;\r\n}\r\necho \"<br>\";\r\n\r\necho \"Perulangan for:<br>\";\r\nfor ($i = 1; $i <= 5; $i++) {\r\n echo \"Angka: $i <br>\";\r\n}\r\necho \"<br>\";\r\n\r\n$angka = 1;\r\necho \"Perulangan do-while:<br>\";\r\ndo {\r\n echo \"Angka: $angka <br>\";\r\n $angka++;\r\n} while ($angka <= 5);\r\n\r\n?>', 'testing_number_four');
INSERT INTO `php_testing_rule` VALUES (7, '<?php \r\n$bilangan = array(1, 2, 3, 4, 5);\r\n$nama = array(\"John\", \"Doe\", \"Jane\");\r\n$status = array(true, false, true);\r\n\r\necho \"Nama pertama: \" . $nama[0] . \"<br>\";\r\necho \"Status kedua: \" . ($status[1] ? \"Aktif\" : \"Tidak Aktif\") . \"<br>\";\r\n\r\n$bilangan[] = 6;\r\nunset($nama[0]);\r\n\r\n$posisi = array_search(\"Doe\", $nama);\r\necho \"Posisi Nama Doe Terletak Pada Array Ke : \". $posisi . \"<br>\";;\r\n\r\n$jumlah_nama = count($nama);\r\necho \"Jumlah Nama Pada Array Adalah : \". $jumlah_nama . \"<br>\";\r\n\r\narray_push($nama, \"Smith\");\r\n$elemen_terakhir = array_pop($nama);\r\necho \"Elemen baru ditambahkan ke Array adalah : \". $elemen_terakhir . \"<br>\";\r\n?>', 'testing_number_five');
-- ----------------------------
-- Table structure for php_topics
@ -88012,7 +88007,7 @@ CREATE TABLE `php_user_submits` (
-- ----------------------------
-- Records of php_user_submits
-- ----------------------------
INSERT INTO `php_user_submits` VALUES ('Amal Dermawan Udjir', NULL, NULL, NULL);
INSERT INTO `php_user_submits` VALUES ('Athallah Adjani', NULL, NULL, NULL);
-- ----------------------------
-- Table structure for projects

View File

@ -18,9 +18,6 @@
</include>
</source>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="display_errors" value="1"/>
<ini name="output_buffering" value="Off"/>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>

View File

@ -334,7 +334,7 @@
$email = session('email');
$sql = DB::select("
SELECT * FROM php_submits_submission a LEFT JOIN php_topics b ON a.task_topics = b.id
where a.email = '$email' and a.id_materi = '$mat'");
where a.username = '$email' and a.id_materi = '$mat'");
if(!empty($sql)):
$no = 1;
?>
@ -427,10 +427,10 @@
TIMESTAMPDIFF(SECOND, time_start, time_end) AS durasi
FROM php_submits_submission a
LEFT JOIN users b
ON CONVERT(a.email USING utf8mb4) COLLATE utf8mb4_unicode_ci = b.email
ON CONVERT(a.username USING utf8mb4) COLLATE utf8mb4_unicode_ci = b.email
WHERE a.id_materi = ? AND a.task_topics = ?
AND time_start IS NOT NULL AND time_end IS NOT NULL
GROUP BY b.email
GROUP BY username
ORDER BY durasi ASC", [$mat, $id_topics]);
$no = 1;
@ -557,8 +557,6 @@
<input type="hidden" id="title" />
<input type="hidden" id="controller" />
<input type="hidden" id="type" />
<input type="hidden" id="materi" value="<?php echo $_GET['materi']; ?>" />
<input type="hidden" id="mulai" value="1" />
<span class="text-sm">Memiliki {{ $topicsCount }} materi yang akan dibahas secara detail</span>
</div>
@ -624,16 +622,26 @@ function materialDetailPage() {
let title = $("#title").val();
let controller = $("#controller").val();
let type = $("#type").val();
let materi = $("#materi").val();
let mulai = $("#mulai").val();
window.location.href = "{{ route('php_material_detail') }}?phpid="+id+"&start="+controller+"&type="+type;
window.location.href = "{{ route('php_material_detail') }}?phpid="+id+"&start="+controller+"&type="+type+"&materi="+materi+"&mulai="+mulai;
/*$.ajax({
type: "POST",
data: {
id: id,
title: title,
_token: csrfToken // Menambahkan token CSRF ke dalam data permintaan
},
dataType: 'html',
url: "{{ route('php_material_detail') }}",
success: function(res) {
},
error: function(xhr, status, error) {
console.error("Error:", error);
}
});*/
}
function resetCountdown() {
localStorage.removeItem('timeEnd');
location.reload();
}
// Fungsi untuk mengubah warna ikon, teks, dan link menjadi biru
function changeColor(id) {
var icon = document.getElementById(id + 'Icon');

View File

@ -176,21 +176,10 @@
<body>
<!-- Navbar -->
<nav class="navbar navbar-light bg-light" style="padding: 15px 20px; border-bottom: 1px solid #E4E4E7; font-family: 'Poppins', sans-serif;">
<a class="navbar-brand" href="{{ route('welcome') }}?materi=<?php echo $_GET['materi']; ?>">
<a class="navbar-brand" href="{{ route('welcome') }}">
<img src="{{ asset('images/left-arrow.png') }}" style="height: 24px; margin-right: 10px;">
{{ $row->title; }}
<div>
<?php if(Session::get('mulai') == '1'): ?>
<h3>Waktu Tersisa:</h3>
<div id="countdown" style="font-size: 32px; color: red;"></div>
<?php else: ?>
<h3>Waktu Tersisa:</h3>
<div id="countdown" style="font-size: 32px; color: red;"></div>
<?php endif; ?>
</div>
</a>
</nav>
<!-- Sidebar -->
@ -262,7 +251,7 @@
</label>
</div>
<div class="col" style="padding-bottom: 1rem;">
<a class="text" style="{{ $active }};" href="{{ route('php_material_detail') }}?phpid={{$topic->id}}&start={{$r->id}}&type={{$r->type}}&materi={{$_GET['materi']}}&mulai={{session()->get('mulai')}}" id="requirement" onclick="updateProgress(@php echo $count_ @endphp)">{{ $r->title }} </a>
<a class="text" style="{{ $active }};" href="{{ route('php_material_detail') }}?phpid={{$topic->id}}&start={{$r->id}}&type={{$r->type}}" id="requirement" onclick="updateProgress(@php echo $count_ @endphp)">{{ $r->title }} </a>
</div>
</div>
@endforeach
@ -303,7 +292,7 @@
</label>
</div>
<div class="col" style="padding-bottom: 1rem;">
<a class="text" onclick="updateProgress(@php echo $count_ @endphp)" style="{{ $active_task }}" href="{{ route('send_task') }}?phpid={{$topic->id}}&task={{$u->task_no}}&type={{$type}}&materi={{$_GET['materi']}}&mulai={{session()->get('mulai')}}" id="requirement" >{{ $u->task_name }} </a>
<a class="text" onclick="updateProgress(@php echo $count_ @endphp)" style="{{ $active_task }}" href="{{ route('send_task') }}?phpid={{$topic->id}}&task={{$u->task_no}}&type={{$type}}" id="requirement" >{{ $u->task_name }} </a>
</div>
</div>
@php
@ -315,13 +304,12 @@
</div>
@endforeach
<?php if($_GET['type'] == '1'): ?>
<?php else: ?>
<li class="list-item" onclick="toggleItem(this)">
<span class="list-item-title" ><a style='color: #000;cursor: pointer; text-decoration: none;' href="{{ route('work_results') }}">Work Results</a>
</span>
</li>
<?php endif; ?>
</ul>
</div>
@ -429,84 +417,11 @@ function updateProgress(params) {
}
});
}
$('#progress').text("@php
$width = session('params');
echo $width."%";
@endphp");
</script>
<script>
$(document).ready(function(){
$(".loader").hide();
});
$("#verifikasi").click(function(){
var csrfToken = "{{ csrf_token() }}"; // Fetch CSRF token
let kode = $("#task").val();
$.ajax({
type: "POST",
data: { kode: kode },
dataType:'html',
url: "{{ Route("unittesting") }}",
headers: {
'X-CSRF-TOKEN': csrfToken // Include CSRF token in headers
},
beforeSend: function() {
// Code to execute before sending the request
// For example, you might want to show a loading spinner
$(".loader").show();
$("#result_verifikasi").hide();
},
success: function(res){
$("#result_verifikasi").show();
$("#result_verifikasi").html(res);
$(".loader").hide();
}
});
});
</script>
<script>
let timeEnd;
// Cek apakah waktu akhir sudah tersimpan
if (localStorage.getItem('timeEnd')) {
timeEnd = new Date(localStorage.getItem('timeEnd'));
} else {
// Kalau belum ada, set mulai dari sekarang + 2 jam
const now = new Date();
timeEnd = new Date(now.getTime() + 2 * 60 * 60 * 1000); // 2 jam dari sekarang
localStorage.setItem('timeEnd', timeEnd.toISOString());
}
function updateCountdown() {
const redirectUrl = "{{ route('welcome') }}?materi=<?php echo $_GET['materi']; ?>";
const now = new Date();
const distance = timeEnd - now;
if (distance <= 0) {
document.getElementById("countdown").innerHTML = "Waktu Habis!";
clearInterval(timer);
window.location.href = redirectUrl;
} else {
const hours = Math.floor((distance / (1000 * 60 * 60)) % 24);
const minutes = Math.floor((distance / (1000 * 60)) % 60);
const seconds = Math.floor((distance / 1000) % 60);
const formatted = `${hours.toString().padStart(2, '0')}:` +
`${minutes.toString().padStart(2, '0')}:` +
`${seconds.toString().padStart(2, '0')}`;
document.getElementById("countdown").innerHTML = formatted;
document.getElementById("time_left").value = formatted;
}
}
const timer = setInterval(updateCountdown, 1000);
updateCountdown();
function resetCountdown() {
localStorage.removeItem('timeEnd');
location.reload();
}
</script>
</body>
</html>

View File

@ -59,22 +59,21 @@
<input type="hidden" value="<?php echo $_GET['task'] ?>" name="testing_number_one" >
<input type="hidden" value="<?php echo $_GET['phpid'] ?>" name="phpid" >
<input type="hidden" value="<?php echo $_GET['type'] ?>" name="type" >
<input type="hidden" value="<?php echo $_GET['materi'] ?>" name="materi" >
<input type="hidden" name="time_left" id="time_left" />
</div>
<br />
<div class="form-group">
<input type="submit" value="Upload" class="btn btn-primary">
<input type="hidden" value="<?php echo $_GET['task']; ?>" id="task"/>
<a type="submit" class="btn btn-primary" id="verifikasi" href="javascript:;">Verify the Answer</a>
</div>
<a type="submit" class="btn btn-primary" href="{{ Route('open_terminal') }}">Terminal</a>
</div>
</form>
<div id="result_verifikasi" style="padding:10px 0;">
</div>
<button type="button" onclick="resetCountdown()" class="btn btn-warning">Reset Countdown</button>
</div>
</div>
<span class="loader"></span>
@ -108,45 +107,3 @@
});
</script>
<script>
let timeEnd;
// Cek apakah waktu akhir sudah tersimpan
if (localStorage.getItem('timeEnd')) {
timeEnd = new Date(localStorage.getItem('timeEnd'));
} else {
// Kalau belum ada, set mulai dari sekarang + 2 jam
const now = new Date();
timeEnd = new Date(now.getTime() + 2 * 60 * 60 * 1000); // 2 jam dari sekarang
localStorage.setItem('timeEnd', timeEnd.toISOString());
}
function updateCountdown() {
const now = new Date();
const distance = timeEnd - now;
if (distance <= 0) {
document.getElementById("countdown").innerHTML = "Waktu Habis!";
clearInterval(timer);
} else {
const hours = Math.floor((distance / (1000 * 60 * 60)) % 24);
const minutes = Math.floor((distance / (1000 * 60)) % 60);
const seconds = Math.floor((distance / 1000) % 60);
const formatted = `${hours.toString().padStart(2, '0')}:` +
`${minutes.toString().padStart(2, '0')}:` +
`${seconds.toString().padStart(2, '0')}`;
document.getElementById("countdown").innerHTML = formatted;
document.getElementById("time_left").value = formatted; // <--- ini yang penting
}
}
const timer = setInterval(updateCountdown, 1000);
updateCountdown(); // panggil pertama kali
function resetCountdown() {
localStorage.removeItem('timeEnd');
location.reload(); // reload halaman agar timer di-set ulang
}
</script>

View File

@ -33,7 +33,7 @@
</style>
<div style="padding-top: 15px; padding-bottom: 15px">
<p class='text-list' style='font-size: 24px; font-weight: 600;width: 400px !important;'> Upload Practical Files Codeception </p>
<p class='text-list' style='font-size: 24px; font-weight: 600;width: 400px !important;'> Upload Practical Files </p>
<div class="texts" style=" position: relative;">
<style>
text:hover{

View File

@ -53,7 +53,7 @@
<img src="{{ asset('./images/book.png') }}" style="width: 13px; height: 16px;">
</div>
<div class="col">
<span>{{ $materi->topik }} learning topics</span>
<p>{{ $materi->topik }} learning topics</p>
</div>
</div>
<div class="row align-items-start">
@ -62,15 +62,15 @@
</div>
<div class="col">
<?php
$sql_kelas = DB::select("SElECt count(*) as total from php_submits_submission where id_materi = '$materi->id_meteri' group by email");
$sql_kelas = DB::select("SElECt count(*) as total from php_submits_submission where id_materi = '$materi->id_meteri' group by username");
$row_count = count($sql_kelas);
echo $row_count;
?>
<span>Mahasiswa</span>
<p></p>
</div>
</div>
<div style="margin-top: 10px;">
<a href="{{ url('php/teacher/crooms/detail/'.$materi->id_meteri) }}" class="btn btn-primary">Detail</a>
<div style="margin-top: auto;">
<a href="{{ route($materi->link) }}?materi={{ $materi->id_meteri }}" class="btn btn-primary">Detail</a>
</div>
</div>
</div>

View File

@ -36,7 +36,6 @@
Route::any('edit.php', [PHPController::class, 'edit_student'])->name('edit_student');
Route::any('index.php', [PHPController::class, 'index_student'])->name('index_student');
Route::any('delete.php', [PHPController::class, 'delete_student'])->name('delete_student');
Route::any('/clearsession', [PHPController::class, 'clearSession'])->name('clearSession');
});
Route::prefix('codeception')->group(function () {
@ -50,7 +49,6 @@
Route::get('/teacher/topics',[PHPDosenController::class, 'topics'])->name('topics');
Route::get('/teacher/crooms',[PHPDosenController::class, 'crooms'])->name('crooms');
Route::get('/teacher/crooms/detail/{id}',[PHPDosenController::class, 'detail_crooms'])->name('detail_crooms');
Route::get('/teacher/topics/add/{id}', [PHPDosenController::class, 'add_topics'])->name('topics');
Route::get('/teacher/topics/delete/{id}', [PHPDosenController::class, 'delete_topics'])->name('topics-delete');
Route::post('/teacher/topics/simpan', [PHPDosenController::class, 'simpan'])->name('simpan');

View File

@ -12,7 +12,6 @@
Route::post('/palm-testing', [WelcomeController::class, 'palm_testing'])->name('phpunit.palm_testing');
Route::get('/unit-testing', [WelcomeController::class, 'unittesting'])->name('phpunit.unit-testing');
Route::get('/result-test-student', [WelcomeController::class, 'result_test'])->name('phpunit.result-test-student');
Route::get('/result-test-student-output', [WelcomeController::class, 'result_test_output'])->name('phpunit.result-test-student-output');
Route::get('/result-test-student-add', [WelcomeController::class, 'result_add'])->name('phpunit.result-test-student-add');
Route::any('/form-upload', [WelcomeController::class, 'form_upload'])->name('phpunit.form-upload');
Route::any('/proses', [WelcomeController::class, 'proses_upload'])->name('phpunit.proses');

View File

@ -10,7 +10,8 @@ class LoginTest extends \Codeception\Test\Unit
protected FunctionalTester $tester;
protected function _before(){
protected function _before()
{
}
// tests

View File

@ -1,13 +1,21 @@
<?php
namespace Tests\Feature; // Ensure the namespace is correct for feature tests
ob_start();
use Tests\TestCase; // Use Laravel's base TestCase class
use Illuminate\Support\Facades\DB;
namespace Tests\Unit;
use Codeception\Test\Unit;
use Codeception\Util\HttpCode;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use PHPUnit\Framework\TestCase;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Session;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\DB;
use App\Models\PHP\Php_testing_rule;
class HomepageLayoutTest extends TestCase
{
/**
@ -16,225 +24,100 @@ class HomepageLayoutTest extends TestCase
*/
public function testLatihanNumberOne():void{
$response = $this->get("/phpunit/result-test-student/");
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_one'");
$row = $sql[0];
$html = $row->testing_rule;
$hasil_output = $row->output;
// Perform the HTTP GET request
$I = $this->tester; // No need to define $this->tester, just use $I.
$I->sendGET('/phpunit/result-test-student/');
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
// Query the database for testing rule
$sql = \DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_one'");
$row = $sql[0];
$html = $row->testing_rule;
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
if($result_test == $result_content){
$this->assertStringContainsString($result_test, $result_content);
}else{
$response = $this->get("/phpunit/result-test-student-output/");
$response->assertSeeText('BelajarMembuatHeadingdanParagraphHeadingke-1Headingke-2Headingke-3Headingke-4Headingke-5Headingke-6inicontohparagraph');
}
// Clean up HTML content
$test = str_replace(["\r\n", "\r", "\n", " "], "", $html);
$result_test = htmlspecialchars($test);
// Clean up response content
$result_content = str_replace(["\r\n", "\r", "\n", " "], "", $I->grabResponse());
// Assert that the cleaned-up response contains the expected string
$I->assertContains($result_test, $result_content);
}
public function testLatihanNumberTwo():void{
$response = $this->get("/phpunit/result-test-student/");
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_two'");
$row = $sql[0];
$html = $row->testing_rule;
$hasil_output = $row->output;
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$response = $this->get("/phpunit/result-test-student/");
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_two'");
$row = $sql[0];
$html = $row->testing_rule;
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
$this->assertStringContainsString($result_test, $result_content);
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
if($result_test == $result_content){
$this->assertStringContainsString($result_test, $result_content);
}else{
$response = $this->get("/phpunit/result-test-student-output/");
$test = str_replace(array("\r\n","\r","\n"," "),"",$hasil_output);
$result_test = htmlspecialchars($test);
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
$this->assertEquals($result_test, $result_content);
}
}
public function testLatihanNumberThree():void{
$response = $this->get("/phpunit/result-test-student/");
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_three'");
$row = $sql[0];
$html = $row->testing_rule;
$hasil_output = $row->output;
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$response = $this->get("/phpunit/result-test-student/");
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
if($result_test == $result_content){
$this->assertStringContainsString($result_test, $result_content);
}else{
$response = $this->get("/phpunit/result-test-student-output/");
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_three'");
$row = $sql[0];
$html = $row->testing_rule;
$nama = "Ali Akbar";
$umur = 20;
$tinggi = 172.5;
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$gaji_pokok = 1000000;
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
$this->assertStringContainsString($result_test, $result_content);
$gaji_bulanan = 0;
$gaji_per_tahun = 0;
$ppn = 0;
$gaji_setelah_ppn = 0;
$gaji_bulanan = $gaji_pokok * 0.5;
$gaji_per_tahun = $gaji_bulanan * 12;
$ppn = $gaji_per_tahun * 0.10;
$gaji_setelah_ppn = $gaji_per_tahun - $ppn;
$response->assertSeeText($umur);
$response->assertSeeText($tinggi);
$response->assertSeeText($gaji_pokok);
$response->assertSeeText($gaji_bulanan);
$response->assertSeeText($gaji_per_tahun);
$response->assertSeeText($ppn);
}
}
public function testLatihanNumberFour():void{
$response = $this->get("/phpunit/result-test-student/");
$response = $this->get("/phpunit/result-test-student/");
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_four'");
$row = $sql[0];
$html = $row->testing_rule;
$hasil_output = $row->output;
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_four'");
$row = $sql[0];
$html = $row->testing_rule;
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
if($result_test == $result_content){
$this->assertStringContainsString($result_test, $result_content);
}else{
$response = $this->get("/phpunit/result-test-student-output/");
$nilai = 75;
if ($nilai >= 70) {
$response->assertSeeText($nilai);
$response->assertSeeText('Anda lulus!');
}
$nilai = 55;
if ($nilai >= 70) {
$response->assertSeeText($nilai);
$response->assertSeeText('Anda lulus!');
} else {
$response->assertSeeText($nilai);
$response->assertSeeText('Anda tidak lulus.');
}
$nilai = "B";
switch ($nilai){
case "A":
$response->assertSeeText($nilai);
$response->assertSeeText('Pertahankan prestasi!');
break;
case "B":
$response->assertSeeText($nilai);
$response->assertSeeText('Cukup baik, terus tingkatkan!');
break;
case "C":
$response->assertSeeText($nilai);
$response->assertSeeText('Kurang baik, terus tingkatkan!');
break;
default:
$response->assertSeeText($nilai);
$response->assertSeeText('Anda tidak lulus.');
}
}
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
$this->assertStringContainsString($result_test, $result_content);
}
public function testLatihanNumberFive():void{
$response = $this->get("/phpunit/result-test-student/");
$response = $this->get("/phpunit/result-test-student/");
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_five'");
$row = $sql[0];
$html = $row->testing_rule;
$hasil_output = $row->output;
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_five'");
$row = $sql[0];
$html = $row->testing_rule;
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
if($result_test == $result_content){
$this->assertStringContainsString($result_test, $result_content);
}else{
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
$this->assertStringContainsString($result_test, $result_content);
$response = $this->get("/phpunit/result-test-student-output/");
$angka = 1;
while ($angka <= 5) {
$response->assertSeeText((string)$angka);
$angka++;
}
for ($i = 1; $i <= 5; $i++) {
$response->assertSeeText((string)$i);
}
$angka = 1;
do {
$response->assertSeeText((string)$angka);
$angka++;
} while ($angka <= 5);
}
}
public function testLatihanNumberSix():void{
$response = $this->get("/phpunit/result-test-student/");
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_six'");
$row = $sql[0];
$html = $row->testing_rule;
$hasil_output = $row->output;
$test = str_replace(array("\r\n","\r","\n"," "),"",$html);
$result_test = htmlspecialchars($test);
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
if($result_test == $result_content){
$this->assertStringContainsString($result_test, $result_content);
}else{
$response = $this->get("/phpunit/result-test-student-output/");
$bilangan = array(1, 2, 3, 4, 5);
$nama = array("John", "Doe", "Jane");
$status = array(true, false, true);
$response->assertSeeText($bilangan[0]);
$response->assertSeeText($nama[0]);
$response->assertSeeText($status[1] ? "Aktif" : "Tidak Aktif");
$response->assertSeeText($nama[0]);
$bilangan[] = 6;
unset($nama[0]);
$posisi = array_search("Doe", $nama);
$response->assertSeeText($posisi);
$jumlah_nama = count($nama);
$response->assertSeeText($jumlah_nama);
array_push($nama, "Smith");
$elemen_terakhir = array_pop($nama);
$response->assertSeeText($elemen_terakhir);
}
}
public function testConditions(): void
{
@ -318,24 +201,4 @@ public function add($a, $b): int
{
return $a + $b;
}
private function normalize($string): string
{
return preg_replace('/\s+/', '', $string); // hilangkan semua spasi, tab, newline
}
// Fungsi untuk mengganti nama variabel dengan placeholder
private function normalizeVariables(string $code): string
{
// Menangkap nama variabel menggunakan ekspresi regular
preg_match_all('/\$(\w+)/', $code, $matches);
// Membuat daftar variabel unik
$uniqueVariables = array_unique($matches[1]);
// Gantikan nama variabel dengan placeholder dinamis
foreach ($uniqueVariables as $index => $variable) {
$code = str_replace('$' . $variable, '$var' . $index, $code); // Ganti variabel dengan placeholder
}
return $code;
}
}