o.O te falta en el form el 'enctype="multipar/form-data"', por eso no sube el archivo...
Código PHP:
Ver original<?php
include_once( dirname(dirname(__FILE__)) . '/classes/check.class.php'); protect("1");
include_once('header.php');
include_once('conect.php');
?>
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<?php include('sidebarevent.php'); ?>
</div>
<div class="span10">
<h1> Añadir Nuevo Evento </h1>
<form action="./add2.php" method="post" name="NewEvent" enctype="multipart/form-data">
<p>
<input name="username" type="hidden" id="username" value="<?php echo $_SESSION['jigowatt']['username']; ?>" />
</p>
<p>
<label for="artista">Artista</label>
<input type="text" name="artista" id="artista" />
<br />
<label for="fecha">Fecha</label>
<input type="text" name="fecha" id="fecha" />
<br />
<label for="hora">Hora</label>
<input type="text" name="hora" id="hora" />
<br />
<label for="sala">Sala</label>
<input type="text" name="sala" id="sala" />
<br />
<label for="direccion">Direccion</label>
<input type="text" name="direccion" id="direccion" />
<br />
<label for="localidad">Localidad</label>
<input type="text" name="localidad" id="localidad" />
<br />
<label for="provincia">Provincia</label>
<input type="text" name="provincia" id="provincia" />
<br />
<label for="pais">País</label>
<input type="text" name="pais" id="pais" />
<br />Imagen <input type="file" name="txtarchivo" />Solo Jpg
<input name="valor" type="hidden" id="valor" value="0" />
</p>
<p>
<input type="submit" name="enviar" id="enviar" value="Enviar" />
<input type="reset" name="button" id="button" value="Restablecer" />
</p>
</form>
</div>
</div>
</div>
<?php include_once('footer.php'); ?>