1251
This commit is contained in:
parent
13bb99c2b8
commit
a92b90cc51
|
|
@ -269,10 +269,209 @@ function unittesting(){
|
|||
$testing_number_one = "testing_number_five";
|
||||
}
|
||||
|
||||
$command = "cd " . base_path() . " && php codecept.phar run Functional LoginTest --filter $unitesting_run";
|
||||
/** 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>$output</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 = '/Codeception\s+(\d+\.\d+\.\d+)/';
|
||||
$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 = isset($matches[1]) ? $matches[1] : "Not founds";
|
||||
$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";
|
||||
$output = shell_exec($command);
|
||||
//echo "<pre>$command</pre>";
|
||||
|
||||
/** 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>";
|
||||
|
||||
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = '$testing_number_one'");
|
||||
$row = $sql[0];
|
||||
$html = $row->testing_rule;
|
||||
|
|
|
|||
536
iclop.sql
536
iclop.sql
|
|
@ -1,17 +1,17 @@
|
|||
/*
|
||||
Navicat Premium Dump SQL
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server : LocalHost
|
||||
Source Server : baru
|
||||
Source Server Type : MySQL
|
||||
Source Server Version : 100432 (10.4.32-MariaDB)
|
||||
Source Server Version : 100425 (10.4.25-MariaDB)
|
||||
Source Host : localhost:3306
|
||||
Source Schema : iclop
|
||||
|
||||
Target Server Type : MySQL
|
||||
Target Server Version : 100432 (10.4.32-MariaDB)
|
||||
Target Server Version : 100425 (10.4.25-MariaDB)
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 05/05/2025 17:22:24
|
||||
Date: 07/05/2025 12:51:16
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
|
|
@ -52020,7 +52020,7 @@ CREATE TABLE `exercise_student_submits_view` (
|
|||
`singletestcode` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
|
||||
`checkstat` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
|
||||
`report` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP,
|
||||
`exerciseid` int NULL DEFAULT NULL,
|
||||
`validation_time` int NULL DEFAULT NULL,
|
||||
`projectfile` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
|
||||
|
|
@ -52419,7 +52419,7 @@ CREATE TABLE `failed_jobs` (
|
|||
`queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`failed_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
`failed_at` timestamp NOT NULL DEFAULT current_timestamp,
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = DYNAMIC;
|
||||
|
||||
|
|
@ -86856,7 +86856,7 @@ CREATE TABLE `iaeng` (
|
|||
`checkstat` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
|
||||
`checkresult` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
|
||||
`validation_time` int NULL DEFAULT NULL,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP
|
||||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
|
||||
|
||||
-- ----------------------------
|
||||
|
|
@ -86894,7 +86894,7 @@ CREATE TABLE `jplas_results` (
|
|||
`filename` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
|
||||
`filepath` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
|
||||
`comment` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP,
|
||||
`updated_at` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 324 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
|
||||
|
|
@ -87231,7 +87231,7 @@ CREATE TABLE `jplas_topics` (
|
|||
`name` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
|
||||
`packfile` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
|
||||
`docfile` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
|
||||
|
||||
|
|
@ -87578,6 +87578,7 @@ 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,
|
||||
`userfile` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
|
|
@ -87590,251 +87591,262 @@ 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 = 256 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = DYNAMIC;
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 268 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, '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);
|
||||
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 (257, NULL, 1, 7, 1, 'Amal Dermawan Udjir', NULL, 'testing_number_one', 'github', 'GuideA2.php', '<?php\r\n $a = 3; \r\n $b = 3; \r\n echo $result = $a * $b;\r\n?>', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (258, NULL, 1, 7, 1, 'Amal Dermawan Udjir', NULL, 'testing_number_one', 'github', 'GuideA1.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>\r\n', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (259, NULL, 1, 7, 1, 'Amal Dermawan Udjir', NULL, 'testing_number_one', 'github', 'GuideA2.php', '<?php\r\n $a = 3; \r\n $b = 3; \r\n echo $result = $a * $b;\r\n?>', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (260, NULL, 1, 7, 1, 'Amal Dermawan Udjir', NULL, 'testing_number_one', 'github', 'GuideA1.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>\r\n', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (261, NULL, 1, 7, 1, 'Amal Dermawan Udjir', NULL, 'testing_number_one', 'github', 'GuideA2.php', '<?php\r\n $a = 3; \r\n $b = 3; \r\n echo $result = $a * $b;\r\n?>', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (262, NULL, 1, 13, 2, 'Amal Dermawan Udjir', NULL, 'testing_number_one', 'github', 'form_insert.php', '<!DOCTYPE html>\r\n<html lang=\"id\">\r\n<head>\r\n <meta charset=\"UTF-8\">\r\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n <title>Formulir Pendaftaran</title>\r\n</head>\r\n<body>\r\n <h2>Formulir Pendaftaran Mahasiswa</h2>\r\n <form action=\"save_insert.php\" method=\"POST\">\r\n <label for=\"nama\">Nama:</label>\r\n <input type=\"text\" id=\"nama\" name=\"nama\" required><br><br>\r\n\r\n <label for=\"email\">Email:</label>\r\n <input type=\"email\" id=\"email\" name=\"email\" required><br><br>\r\n\r\n <label for=\"prodi\">Program Studi:</label>\r\n <select id=\"prodi\" name=\"prodi\" required>\r\n <option value=\"Informatika\">Informatika</option>\r\n <option value=\"Sistem Informasi\">Sistem Informasi</option>\r\n <option value=\"Teknik Elektro\">Teknik Elektro</option>\r\n </select><br><br>\r\n\r\n <button type=\"submit\">Daftar</button>\r\n </form>\r\n</body>\r\n</html>\r\n', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (263, NULL, 1, 14, 2, 'Amal Dermawan Udjir', NULL, 'testing_number_one', 'github', 'koneksi.php', '<?php\r\n$localhost = \"localhost\";\r\n$username = \"root\";\r\n$password = \"\";\r\n$db = \"test_db\";\r\n\r\n$conn = new mysqli($localhost, $username, $password, $db);\r\n\r\nif ($conn->connect_error) {\r\n die(\"Koneksi gagal: \" . $conn->connect_error);\r\n}\r\n\r\n?>\r\n', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (264, NULL, 3, 14, 2, 'Amal Dermawan Udjir', NULL, 'testing_number_three', 'github', 'insert.php', '<?php\r\ninclude \"koneksi.php\";\r\n\r\nif ($conn->connect_error) {\r\ndie(\"Connection failed: \" . $conn->connect_error);\r\n}\r\n\r\n$name = $_POST[\"nama\"];\r\n$email = $_POST[\"email\"];\r\n$prodi = $_POST[\"prodi\"];\r\n\r\n\r\n$sql = \"INSERT INTO users (name, email, prodi) VALUES ( \"$name\", \"$email\", \"$prodi\")\";\r\n\r\nif ($conn->query($sql) === TRUE) {\r\necho \"New record created successfully\";\r\n} else {\r\necho \"Error: \" . $sql . \"<br>\" . $conn->error;\r\n}\r\n\r\n$conn->close();\r\n?>\r\n', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (265, NULL, 4, 14, 2, 'Amal Dermawan Udjir', NULL, 'testing_number_four', 'github', 'update.php', '<?php\r\ninclude \"koneksi.php\";\r\n\r\nif ($conn->connect_error) {\r\n die(\"Connection failed: \" . $conn->connect_error);\r\n}\r\n\r\n\r\n// Mengambil data berdasarkan ID\r\nif (isset($_GET[\"id\"])) {\r\n $id = $_GET[\"id\"];\r\n $query = \"SELECT * FROM users WHERE id = \"$id\"\";\r\n $result = $conn->query($query);\r\n \r\n if ($row = $result->fetch_assoc()) {\r\n $name = $row[\"name\"];\r\n $email = $row[\"email\"];\r\n $prodi = $row[\"prodi\"];\r\n }\r\n}\r\n\r\n// Proses update data\r\nif (isset($_POST[\"update\"])) {\r\n $id = $_POST[\"id\"];\r\n $name = $_POST[\"nama\"];\r\n $email = $_POST[\"email\"];\r\n $prodi = $_POST[\"prodi\"];\r\n\r\n $sql = \"UPDATE users SET name = \"$name\", email = \"$email\", prodi = \"$prodi\" WHERE id = \"$id\"\";\r\n\r\n if ($conn->query($sql) === TRUE) {\r\n echo \"Data berhasil diperbarui! <a href=\"index.php\">Kembali ke daftar mahasiswa</a>\";\r\n } else {\r\n echo \"Error: \" . $sql . \"<br>\" . $conn->error;\r\n }\r\n}\r\n?>\r\n\r\n<!DOCTYPE html>\r\n<html lang=\"id\">\r\n<head>\r\n <meta charset=\"UTF-8\">\r\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n <title>Formulir Update Mahasiswa</title>\r\n</head>\r\n<body>\r\n <h2>Formulir Update Mahasiswa</h2>\r\n <form action=\"\" method=\"POST\">\r\n <input type=\"hidden\" name=\"id\" value=\"<?php echo $id; ?>\">\r\n\r\n <label for=\"nama\">Nama:</label>\r\n <input type=\"text\" id=\"nama\" name=\"nama\" value=\"<?php echo $name; ?>\" required><br><br>\r\n\r\n <label for=\"email\">Email:</label>\r\n <input type=\"email\" id=\"email\" name=\"email\" value=\"<?php echo $email; ?>\" required><br><br>\r\n\r\n <label for=\"prodi\">Program Studi:</label>\r\n <select id=\"prodi\" name=\"prodi\" required>\r\n <option value=\"Informatika\" <?php echo ($prodi == \"Informatika\") ? \"selected\" : \"\"; ?>>Informatika</option>\r\n <option value=\"Sistem Informasi\" <?php echo ($prodi == \"Sistem Informasi\") ? \"selected\" : \"\"; ?>>Sistem Informasi</option>\r\n <option value=\"Teknik Elektro\" <?php echo ($prodi == \"Teknik Elektro\") ? \"selected\" : \"\"; ?>>Teknik Elektro</option>\r\n </select><br><br>\r\n\r\n <button type=\"submit\" name=\"update\">Update</button>\r\n </form>\r\n</body>\r\n</html>\r\n', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (266, NULL, 2, 14, 2, 'Amal Dermawan Udjir', NULL, 'testing_number_two', 'github', 'index.php', '<?php\r\nsession_start();\r\ninclude \"koneksi.php\";\r\n\r\nif ($conn->connect_error) {\r\n die(\"Connection failed: \" . $conn->connect_error);\r\n}\r\n\r\n$sql = \"SELECT * FROM users\";\r\n$result = $conn->query($sql);\r\n\r\nif ($result->num_rows > 0) {\r\n echo \"<a href=\"form_insert.php\">Insert Data</a> <br />\";\r\n echo \"<table border=\"1\" cellspacing=\"0\" cellpadding=\"5\">\";\r\n echo \"<tr>\r\n <th>Name</th>\r\n <th>Email</th>\r\n <th>study program</th>\r\n <th>By</th>\r\n <th>Action</th>\r\n </tr>\";\r\n\r\n while ($row = $result->fetch_assoc()) {\r\n echo \"<tr>\";\r\n echo \"<td>\" . $row[\"name\"] . \"</td>\";\r\n echo \"<td>\" . $row[\"email\"] . \"</td>\";\r\n echo \"<td>\" . $row[\"prodi\"] . \"</td>\";\r\n echo \"<td>\" . $row[\"username\"] . \"</td>\";\r\n echo \"<td><a href=\"edit.php?id=\" . $row[\"id\"] . \"\">Edit</a> | <a href=\"delete.php?id=\" . $row[\"id\"] . \"\">Delete</a></td>\";\r\n echo \"</tr>\";\r\n }\r\n\r\n echo \"</table>\";\r\n} else {\r\n echo \"<a href=\"form_insert.php\">Insert Data</a> <br />\";\r\n echo \"0 results\";\r\n}\r\n\r\n?>\r\n', NULL, NULL, NULL, NULL, NULL);
|
||||
INSERT INTO `php_submits_submission` VALUES (267, NULL, 5, 14, 2, 'Amal Dermawan Udjir', NULL, 'testing_number_five', 'github', 'delete.php', '<?php\r\ninclude \"koneksi.php\";\r\n\r\nif ($conn->connect_error) {\r\ndie(\"Connection failed: \" . $conn->connect_error);\r\n}\r\n\r\n$id = $_GET[\"id\"];\r\n$sql = \"DELETE FROM users WHERE id = $id\";\r\n\r\n\r\nif ($conn->query($sql) === TRUE) {\r\necho \"Record deleted successfully\";\r\n} else {\r\necho \"Error: \" . $sql . \"<br>\" . $conn->error;\r\n}\r\n\r\n$conn->close();\r\n?>\r\n', NULL, NULL, NULL, NULL, NULL);
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for php_task
|
||||
|
|
@ -88007,7 +88019,7 @@ CREATE TABLE `php_user_submits` (
|
|||
-- ----------------------------
|
||||
-- Records of php_user_submits
|
||||
-- ----------------------------
|
||||
INSERT INTO `php_user_submits` VALUES ('Athallah Adjani', NULL, NULL, NULL);
|
||||
INSERT INTO `php_user_submits` VALUES ('Amal Dermawan Udjir', 14, 5, 2);
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for projects
|
||||
|
|
@ -88060,8 +88072,8 @@ CREATE TABLE `python_feedback` (
|
|||
`id_topik` int NOT NULL,
|
||||
`id_percobaan` int NOT NULL,
|
||||
`comment` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp,
|
||||
`updated_at` timestamp NOT NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id_feedback`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 653 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
|
||||
|
||||
|
|
@ -88726,8 +88738,8 @@ CREATE TABLE `python_percobaan` (
|
|||
`filetest` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`deskripsi` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`texteditor` longtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,
|
||||
`created_at` timestamp NULL DEFAULT current_timestamp(),
|
||||
`updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
|
||||
`created_at` timestamp NULL DEFAULT current_timestamp,
|
||||
`updated_at` timestamp NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id_percobaan`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 17 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
|
||||
|
||||
|
|
@ -88762,8 +88774,8 @@ CREATE TABLE `python_students_submit` (
|
|||
`userid` int NOT NULL,
|
||||
`checkstat` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`checkresult` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
|
||||
`created_at` timestamp NOT NULL DEFAULT current_timestamp,
|
||||
`updated_at` timestamp NOT NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id_submit`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 901 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
|
||||
|
||||
|
|
@ -89612,8 +89624,8 @@ CREATE TABLE `python_students_validation` (
|
|||
`time` int NULL DEFAULT NULL,
|
||||
`report` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`file_submitted` varchar(70) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`create_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
`update_at` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
`create_at` timestamp NOT NULL DEFAULT current_timestamp,
|
||||
`update_at` timestamp NOT NULL DEFAULT current_timestamp,
|
||||
PRIMARY KEY (`id_validation`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 688 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
|
||||
|
||||
|
|
@ -90271,8 +90283,8 @@ CREATE TABLE `python_topics` (
|
|||
`nama` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`deskripsi` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`status` tinyint NOT NULL DEFAULT 1,
|
||||
`created_at` timestamp NULL DEFAULT current_timestamp(),
|
||||
`updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
|
||||
`created_at` timestamp NULL DEFAULT current_timestamp,
|
||||
`updated_at` timestamp NULL DEFAULT current_timestamp ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`id_topik`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
|
||||
|
||||
|
|
|
|||
|
|
@ -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.username = '$email' and a.id_materi = '$mat'");
|
||||
where a.email = '$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.username USING utf8mb4) COLLATE utf8mb4_unicode_ci = b.email
|
||||
ON CONVERT(a.email 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 username
|
||||
GROUP BY b.email
|
||||
ORDER BY durasi ASC", [$mat, $id_topics]);
|
||||
|
||||
$no = 1;
|
||||
|
|
|
|||
|
|
@ -65,7 +65,6 @@
|
|||
<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>
|
||||
<a type="submit" class="btn btn-primary" href="{{ Route('open_terminal') }}">Terminal</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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 </p>
|
||||
<p class='text-list' style='font-size: 24px; font-weight: 600;width: 400px !important;'> Upload Practical Files Codeception </p>
|
||||
<div class="texts" style=" position: relative;">
|
||||
<style>
|
||||
text:hover{
|
||||
|
|
|
|||
|
|
@ -1,19 +1,9 @@
|
|||
<?php
|
||||
|
||||
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;
|
||||
namespace Tests\Feature; // Ensure the namespace is correct for feature tests
|
||||
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use Illuminate\Support\Facades\File;
|
||||
use Illuminate\Support\Facades\Session;
|
||||
use Tests\TestCase; // Use Laravel's base TestCase class
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use App\Models\PHP\Php_testing_rule;
|
||||
|
||||
|
||||
class HomepageLayoutTest extends TestCase
|
||||
|
|
@ -25,24 +15,17 @@ class HomepageLayoutTest extends TestCase
|
|||
|
||||
public function testLatihanNumberOne():void{
|
||||
|
||||
// Perform the HTTP GET request
|
||||
$I = $this->tester; // No need to define $this->tester, just use $I.
|
||||
$I->sendGET('/phpunit/result-test-student/');
|
||||
$response = $this->get("/phpunit/result-test-student/");
|
||||
|
||||
// Query the database for testing rule
|
||||
$sql = \DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_one'");
|
||||
$sql = DB::select("SELECT * FROM php_testing_rule WHERE testing_name = 'testing_number_one'");
|
||||
$row = $sql[0];
|
||||
$html = $row->testing_rule;
|
||||
|
||||
// Clean up HTML content
|
||||
$test = str_replace(["\r\n", "\r", "\n", " "], "", $html);
|
||||
$test = str_replace(array("\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);
|
||||
$result_content = str_replace(array("\r\n","\r"," "),"", $response->content());
|
||||
$this->assertStringContainsString($result_test, $result_content);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user