You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
364 B
13 lines
364 B
<?php
|
|
require_once("../business/Task.php");
|
|
require_once("../dal/TaskGateway.php");
|
|
echo "<h1>2do test</h1>";
|
|
|
|
$t = new Task(10,'testNico','laDescription','urgent','001');
|
|
//include("../dal/Connection.php");
|
|
include("credentials.php");
|
|
$con = new Connection('mysql:host=localhost;dbname=phpproject',$user,$pass);
|
|
$tgt = new TaskGateway($con);
|
|
$tgt->insert($t);
|
|
?>
|