no se subio el codigo del otro archivo
el codigo que tengo en el formulario es
Código HTML:
Ver original <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Slabo+27px" rel="stylesheet"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous"> <link rel="stylesheet" href="css/estilos.css"> <h1 class="titulo">Subir Foto
</h1>
<form class="formulario" method="POST" enctype="multipart/form-data" action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']); ?>">
<input type="file" id="foto" name="image">
<input type="text" id="titulo" name="title">
<textarea name="description" id="texto" placeholder="Ingresa una descripción"></textarea>
<?php if (isset($error)): ?>
<p class="error"><?php echo $error; ?></p> <?php endif ?>
<input type="submit" class="submit" value="Guardar">