bcom/editVersion.php
Mysaa 38ec48c9fc Maintenant, tout dans le executor.php. Fin de tempPreMega.
Ajout d'un super simulateur de tours de Monoï dans la page 404.
2021-06-06 12:48:11 +02:00

35 lines
753 B
PHP

<?php
session_start ();
include_once 'includes/inter.php';
?>
<!DOCTYPE html>
<html>
<head>
<?php include 'includes/meta.php'; ?>
</head>
<body>
<?php include 'includes/header.php'; ?>
<br />
<br />
<br />
<br />
<form action="editingVersion.php?id=<?php $_GET['id'];?>&amp;v=<?php $_GET['v'];?>" method="post">
<label for="newVersionName">Nom de la version :</label> <input
type="text" maxlength="100" id="newVersionName" name="name" /><br />
<br />
<select name="language">
<option value="Java">Java</option>
<option value="VBA">VBA</option>
</select>
<br />
<br />
<input type="submit" value="Modifier la version" />
</form>
<br />
<br />
<br />
<br />
<?php include 'includes/footer.php'; ?>
</body>
</html>