kora пре 2 година
родитељ
комит
2ab61361dd
2 измењених фајлова са 50 додато и 0 уклоњено
  1. 8 0
      FORMS/action_page.php
  2. 42 0
      FORMS/index.html

+ 8 - 0
FORMS/action_page.php

@@ -0,0 +1,8 @@
+<html>
+<body>
+
+eccolo: <?php echo $_GET["labelDipinto"]; ?><br>
+identificativo: <?php echo $_GET["identificativo"]; ?>
+
+</body>
+</html>

+ 42 - 0
FORMS/index.html

@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+<body>
+<h1>Trasformatore bello abbestia</h1>
+<h2>DIPINTO</h2>
+
+<form action="action_page.php" method="get">
+    <fieldset>
+      <legend>Dipinto:</legend>
+      
+      <label for="labelDipinto">nome (label)</label><br>
+      <input type="text" id="labelDipinto" name="labelDipinto" value="dipinto rappresentante XYZ"><br>
+      
+      <label for="identificativo">ID interno (is identified by)</label><br>
+      <input type="text" id="identificativo" name="identificativo" value="Doe"><br><br>
+
+      <label for="note">Note (has note)</label><br>
+      <input type="note" id="note" name="note" value="note varie (descrizione dell'opera)"><br><br>
+
+      <label for="consists">Supporto (consists of)</label><br>
+      <input type="consists" id="consists" name="consists" value="materiale del supporto -> tela/cemento/ghisa"><br><br>
+
+      <label for="custode">Custode (has former or current keeper)</label><br>
+      <input type="custode" id="custode" name="custode" value="opera in custodia al museo XYZ"><br><br>
+
+      <label for="proprietario">Proprietario (has current owner)</label><br>
+      <input type="proprietario" id="proprietario" name="proprietario" value="Opera di proprietà del museo XYZ"><br><br>
+
+      
+
+      <input type="submit" value="ALO'">
+    </fieldset>
+  </form>
+  
+
+  has type -> Opera d'Arte
+
+<p>Questa robina di qualità trasforma direttamente in RDF (TTL) passando dal parser</p>
+
+
+</body>
+</html>