Discover Professional maritime training programs

Explore internationally aligned maritime training programs designed to develop your skills and prepare you for successful careers in the maritime industry with the highest standards of professionalism and safety.

Booking

Globally Recognized Maritime Certification Courses

Easily schedule your maritime training sessions with clear, step-by-step guidance to secure your spot promptly.

Notice: This is a demo SimplyBook.me widget.

Elite Maritime Training and Certification

At ACADEMIE NAVALE – MR, we are committed to delivering superior maritime education and professional growth opportunities that uphold the highest standards of excellence and international recognition.

<?php

$certificates = [
"431" => [
"name" => "Ahmed Mohamed",
"course" => "Fire Fighting Training",
"date" => "2026-02-01",
"status" => "Valid"
],

"432" => [
"name" => "Ali Salem",
"course" => "STCW Basic Safety",
"date" => "2026-01-20",
"status" => "Valid"
]

];

if(isset($_GET['cert'])){

$cert = $_GET['cert'];

if(isset($certificates[$cert])){

echo "<h2>Certificate Verification</h2>";
echo "Certificate Number: ".$cert."<br>";
echo "Name: ".$certificates[$cert]['name']."<br>";
echo "Course: ".$certificates[$cert]['course']."<br>";
echo "Issue Date: ".$certificates[$cert]['date']."<br>";
echo "Status: ".$certificates[$cert]['status'];

}else{

echo "Certificate Not Found";

}

}else{

echo "No Certificate Selected";

}

?>