Ejemplo n.º 1
0
<script type="text/javascript">
$(document).ready(function(){

});
</script>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
  <link rel="stylesheet" href="bootstrap-select.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
  <script src="bootstrap-select.js"></script>
<?php 
include 'models.php';
$track = isset($_GET['id']) ? Track::find($_GET['id']) : Track::create(null, null, 0, 0, 0, 1);
?>



	
</head>
<body>
<div class="jumbotron" >
<div class="container"><?php 
if (isset($track->TrackId)) {
    ?>
			<h1>Track</h1>
			<?php 
} else {
    ?>
Ejemplo n.º 2
0
<?php

include 'models.php';
if (isset($_POST['id'])) {
    $a = Track::find($_POST['id']);
    $a->Name = $_POST['name'];
    $a->Album = intval($_POST['album']);
    $a->Composer = $_POST['composer'];
    $a->Milliseconds = $_POST['milliseconds'];
    $a->Bytes = $_POST['bytes'];
    $a->UnitPrice = $_POST['unitprice'];
    if ($a->save()) {
        header("Location: " . "../index.php?id=" . $a->TrackId);
    }
} else {
    $a = Track::create($_POST['name'], $_POST['composer'], $_POST['milliseconds'], $_POST['bytes'], $_POST['unitprice'], intval($_POST['album']));
    if ($a->save()) {
        header("Location: " . "../index.php?id=" . $a->TrackId);
    }
}
Ejemplo n.º 3
0
<?php

include 'models.php';
if (isset($_GET['id'])) {
    $a = Track::find($_GET['id']);
    if ($a->delete()) {
        header("Location: index.php");
    }
} else {
    header("Location: index.php");
}
 public function api_get_track_by_id($track_id)
 {
     $track = Track::find($track_id);
     $data = array('id' => $track_id, 'name' => $track->name, 'artist_name' => $track->artist->name, 'album_name' => $track->album->name);
     return Response::json($data);
 }