Código PHP:
<?php
$conexion = mysql_connect("sql201.byethost15.com", "user", "pass");
mysql_select_db("database", $conexion);
if ( ! empty($_POST)) {
if (preg_match("@image/(gif|jpg|jpeg|png|x-png|bmp)$@", $_FILES['archivo']['type'])){
if ($_POST['action'] == "add" && $_FILES['archivo']['name'] != "") {
$ruta = "./imagenesgio/" .time(). $_FILES['archivo']['name'];
copy($_FILES['archivo']['tmp_name'], $ruta);
echo "<b>La imagen subio correctamente</b>";
}
else{
echo "Solo se pueden subir imagenes tipo .png,.gif,.jpg,.bmp,.jpeg";
} }
$que = "INSERT INTO gio (ruta) ";
$que.= "VALUES ('".$ruta."')";
$res = mysql_query($que, $conexion) or die(mysql_error());
$state = true;
echo "Disco Agregado!";
}
?>
<form name="form1" enctype="multipart/form-data" method="post" action="">
<label>
<input type="file" name="fileField" id="fileField">
</label>
<p>
<label>
<input type="submit" name="button" id="button" value="Subir imagen">
<input type="hidden" name="action" value="add" />
</label>
</p>
</form>
<p>
<label></label>
</p>