NOUVELLE VERSION !!! Des nouvelles classes de partout, et des supers procédures SQL.

This commit is contained in:
Mysaa
2021-06-06 13:03:33 +02:00
parent e59898b0bb
commit 3488323439
59 changed files with 2906 additions and 1403 deletions
+46
View File
@@ -0,0 +1,46 @@
<?php
session_start ();
include_once 'includes/inter.php';
?>
<!DOCTYPE html>
<html>
<head>
<?php include 'includes/meta.php'; ?>
</head>
<body>
<?php include 'includes/header.php'; ?>
<?php include_once 'includes/inter.php';
$data = getProjectData();
if(!isConnected()){
header("Location:401.php");
goto end;
}else if(!preg_match('#[^0-9]?' . $_SESSION['session_id'] .'[^0-9]?#',$data ['owners'])){
header("Location:403.php");
goto end;
}
?>
<br />
<br />
<br />
<br />
<form action="creatingVersion.php?id=<?php $_GET['id'];?>" 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="Cr&eacute;er une nouvelle version" />
</form>
<br />
<br />
<br />
<br />
<?php include 'includes/footer.php'; ?>
</body>
</html>
<?php
end:
?>