PHP interesse |
|
ik werk met templatepower... ik heb het alleen het volgende probleem. ik heb mijn smilies verwerkt in blokken, alleen als ik in een template .tpl mijn smilies 2x wil weergeven, voor twee textvakken... dan word er maar 1x ies getoond.
mijn .tpl:
<h3>Foto's toevoegen</h3>
<div id="containerForm">
<form method="post" action="">
<div class="item">
<label>Aantal foto's:</label>
<input type="text" id="uploads" name="uploads" /><br />
</div>
<div class="item">
<label> </label>
<input type="submit" id="submit_uploads" name="submit_uploads" value="Verander" /><br />
</div>
</form>
<form method="post" action="" enctype="multipart/form-data">
<!-- START BLOCK : uploads -->
<div class="item">
<label for="foto[{id}]">Foto {id}:</label>
<input type="file" id="foto[{id}]" name="foto[{id}]" /><br />
</div>
<!-- END BLOCK : uploads -->
<div class="item">
<label for="album">Album:</label>
<select name="album">
<!-- START BLOCK : mappen -->
<option value="{url}">{name}</option>
<!-- END BLOCK : mappen -->
</select>
</div>
<div class="item">
<label> </label>
<input type="submit" id="submit_fotos" name="submit_fotos" value="Voeg toe" /><br />
</div>
</form>
</div>
<h3>Vanuit een .zip (beta)</h3>
<form method="post" action="" onsubmit="return checkFotosZipToevoegen();">
<div id="containerForm">
<div class="item">
<label for="album">Album:</label>
<select name="album">
<!-- START BLOCK : mappen -->
<option value="{url}">{name}</option>
<!-- END BLOCK : mappen -->
</select>
</div>
<div class="item">
<label for="zip">ZIP-bestand:</label>
<input type="file" id="zip" name="zip" /><br />
</div>
<div class="item">
<label for="album">Album:</label>
<select name="album">
<!-- START BLOCK : mappen -->
<option value="{url}">{name}</option>
<!-- END BLOCK : mappen -->
</select>
</div>
<div class="item">
<label> </label>
<input type="submit" id="submit_fotoszip" name="submit_fotoszip" value="Voeg toe" /><br />
</div>
</div>
</form>
<h3>Foto's toevoegen</h3> <div id="containerForm"> <form method="post" action=""> <div class="item"> <label>Aantal foto's:</label> <input type="text" id="uploads" name="uploads" /><br /> </div> <div class="item"> <label> </label> <input type="submit" id="submit_uploads" name="submit_uploads" value="Verander" /><br /> </div> </form> <form method="post" action="" enctype="multipart/form-data"> <!-- START BLOCK : uploads --> <div class="item"> <label for="foto[{id}]">Foto {id}:</label> <input type="file" id="foto[{id}]" name="foto[{id}]" /><br /> </div> <!-- END BLOCK : uploads --> <div class="item"> <label for="album">Album:</label> <select name="album"> <!-- START BLOCK : mappen --> <option value="{url}">{name}</option> <!-- END BLOCK : mappen --> </select> </div> <div class="item"> <label> </label> <input type="submit" id="submit_fotos" name="submit_fotos" value="Voeg toe" /><br /> </div> </form> </div> <h3>Vanuit een .zip (beta)</h3> <form method="post" action="" onsubmit="return checkFotosZipToevoegen();"> <div id="containerForm"> <div class="item"> <label for="album">Album:</label> <select name="album"> <!-- START BLOCK : mappen --> <option value="{url}">{name}</option> <!-- END BLOCK : mappen --> </select> </div> <div class="item"> <label for="zip">ZIP-bestand:</label> <input type="file" id="zip" name="zip" /><br /> </div> <div class="item"> <label for="album">Album:</label> <select name="album"> <!-- START BLOCK : mappen --> <option value="{url}">{name}</option> <!-- END BLOCK : mappen --> </select> </div> <div class="item"> <label> </label> <input type="submit" id="submit_fotoszip" name="submit_fotoszip" value="Voeg toe" /><br /> </div> </div> </form>
weet iemand een oplossing hoe ik 2x mijn block smilies kan tonen ?
mvg rob
|