Beispiel #1
0
    <td>001</td>
    <td>Masum</td>
    <td>Dhaka</td>
    <td><a href="View.php">View</a> <a href="update.php">edit</a> <a href="Delete.php">Delete</a></td>
   </tr>
   <tr>
    <td>002</td>
    <td>Prince</td>	
    <td>Borishal</td>
    <td><a href="View.php">View</a> <a href="update.php">edit</a> <a href="Delete.php">Delete</a></td>
  </tr>
   <tr>
    <td>003</td>
    <td>Robi</td>	
    <td>New York</td>
    <td><a href="View.php">View</a> <a href="update.php">edit</a> <a href="Delete.php">Delete</a></td>
  </tr>
  
  </center>
<?php 
function __autoload($className)
{
    $fullPath = $className . ".php";
    $finalDis = "/../../../" . str_replace("\\", "/", $fullPath);
    //echo $finalDis;
    include_once $finalDis;
}
use src\Bitm\SEIP117637\city\City;
$city = new city();
$city->index();
echo "<hr>";