예제 #1
0
파일: index.php 프로젝트: amylundell/dig540
<?php

require_once 'config.php';
require_once 'recording.php';
if (isset($_POST['submit'])) {
    $audiobook = new Recording($_POST['title'], $_POST['version'], $_POST['language'], $_POST['narration_type'], $_POST['running_time'], $_POST['zip_file_size'], $_POST['catalog_date'], $_POST['website_link']);
    $audiobook->create();
}
?>

<html>
  <head>
    <title>LibriVox Recordings</title>
  </head>
  <body>
    To Create a New Recording Entry in the Database:<br/><br/>
    <form method="POST" action="">
      Enter the title of the recording:
      <input type="text" name="title"></input><br/>
      Enter the version of the recording (if no number given, use 1):
      <input type="text" name="version"></input><br/>
      Enter the language of the recording:
      <input type="text" name="language"></input><br/>
      Enter the narration type of the recording (Solo, Collaborative, Dramatic):
      <input type="text" name="narration_type"></input><br/>
      Enter the running time of the recording (hh:mm:ss):
      <input type="text" name="running_time"></input><br/>
      Enter the zip file size of the recording:
      <input type="text" name="zip_file_size"></input><br/>
      Enter the catalog date of the recording (yyyy-mm-dd):
      <input type="text" name="catalog_date"></input><br/>
예제 #2
0
<?php

require_once 'config.php';
require_once 'recording.php';
if (isset($_POST['create'])) {
    $created = new Recording($_POST['title'], $_POST['version'], $_POST['language'], $_POST['narration_type'], $_POST['running_time'], $_POST['zip_file_size'], $_POST['catalog_date'], $_POST['website_link']);
    $created->create();
} elseif (isset($_POST['delete'])) {
    $deleted = new Recording($_POST['id']);
    $deleted->delete();
} elseif (isset($_POST['update'])) {
    $updated = new Recording($_POST['title'], $_POST['version'], $_POST['language'], $_POST['narration_type'], $_POST['running_time'], $_POST['zip_file_size'], $_POST['catalog_date'], $_POST['website_link'], $_POST['id']);
    $updated->update();
} elseif (isset($_POST['find'])) {
    $searched = new Recording($_POST['title']);
    $searched->find();
} elseif (isset($_POST['list'])) {
    $listed = new Recording();
    $listed->recording_list();
} else {
    echo 'Please enter information into the form.';
}
?>

<html>
  <head>
    <title>LibriVox Recordings</title>
  </head>
  <body>
    To CREATE a New Recording Entry in the Database:<br/><br/>
    <form method="POST" action="">