<?php

// Include Files
include "includes.inc.php";
// Session Identification
session_identification();
print_header();
print_title("Convoy move");
show_owned_convoys($_USER['id']);
print_footer();
exit;
// ============================================================================================
//
//
// Description:
//
//
// Parameters:
//
//
// Returns:
//
//
function show_owned_convoys($user_id)
{
    assert(is_numeric($user_id));
    echo "<table border=1 align=center>";
    echo "  <tr>";
    echo "    <th>Convoy Name</th>";
    echo "    <th>Flag Ship</th>";
    echo "    <th>Ships</th>";
<?php

// Include Files
include "includes.inc.php";
// Session Identification
session_identification();
print_header();
print_title("Convoy view");
//  if (isset ($cid)) {
//    show_convoy_details ($_USER, decrypt_get_vars($cid));
//  } else {
show_owned_convoys($_USER);
echo "<br><br>";
show_participated_convoys($_USER);
//  }
print_footer();
exit;
// ============================================================================================
//
//
// Description:
//
//
// Parameters:
//
//
// Returns:
//
//
function show_owned_convoys($_USER)
{