haber si me ayudan en algo que no entiendo..
P1.php
Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form action="P2.php" method="post" enctype="multipart/form-data" name="form1" id="form1">
<label>
<input type="file" name="A" id="fileField" />
</label>
<p>
<label>
<input type="submit" name="button" id="button" value="Enviar" />
</label>
</p>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form action="P2.php" method="post" enctype="multipart/form-data" name="form1" id="form1">
<label>
<input type="file" name="A" id="fileField" />
</label>
<p>
<label>
<input type="submit" name="button" id="button" value="Enviar" />
</label>
</p>
</form>
</body>
</html>
P2.php
Código PHP:
<?php
$NombreBan = $HTTP_POST_FILES['A']['name'];
$Tam = $HTTP_POST_FILES['A']['size'];
$Ext = substr($NombreBan, -4);
echo $NombreBan;
echo $Ext;
?>
a que se debe, hay que habilitar algo en especial?
Saludoos y gracias!