<html>
<head>
<title>SGC-EGO Admin-Control-Plantel</title>
<!--
body,td,th {
color: #000000;
}
body {
background-color: #000000;
}
.style5 {font-size: 5px}
.style6 {font-family: Arial, Helvetica, sans-serif}
.style7 {font-size: 1px}
.style8 {
color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
}
.style9 {color: #FFFF00}
a:link {
color: #000000;
}
a:visited {
color: #000000;
}
a:hover {
color: #FF0000;
}
a:active {
color: #FF0000;
}
.style13 {font-size: 7px}
-->
</style></head>
<body bgcolor="#000000">
<table border="0">
<tr><td>
<talbe border="0" cellspacing="0">
<tr>
<td background="../images/cellpic.jpg" height="27" width="880"><b> Neue Kategorie:</b></td>
</tr>
<tr>
<td colspan="2" align="left" valign="top" bgcolor="#5F5F5F">
<?php
include('../includes/config.php');
$conn = mysql_connect($mysql_host, $mysql_user, $mysql_pass);
if (!$conn) {
echo "Keine Verbindung zur DB: " . mysql_error();
exit;
}
if (!mysql_select_db("sgbrowser")) {
echo "Kann mydbname nicht auswählen: " . mysql_error();
}
session_start();
$tempname = $_FILES['file']['tmp_name'];
$name = $_FILES['file']['name'];
$type = $_FILES['file']['type'];
$size = $_FILES['file']['size'];
if($size > "1000000") {
$err[] = "Die Datei welche du hochladen willst, ist zu gross!<br>Maximale Dateigrosse beträgt 15 KB!";
}
if(empty($err)) {
copy("$tempname", "../images/kategorie/$name");
echo "Die Datei $name wurde erfolgreich hochgeladen!";
}
else {
foreach($err as $error)
echo "$error<br>";
}
$path = "images/kategorie/";
$filepath = $path+$name;
"INSERT INTO sgc_news_kategorie
(name,image)
VALUES
('".$_POST['name']."','$filepath')";
mysql_query($sql2) OR die(mysql_error());
echo "<b>Die neue Kategorie wurde eingetragen</b>";
?>
<br>