arkadaşlar elimde bir bot var eklenmesi gereken öğeleri listeliyor ancak tek tek secip ekle diyorum toplu olarak ekliyor bu sayfaya tümünü seç gibi bir kod ekleyemez miyiz tümünü seçse sonra ekleye tıklasam
sanırım ilgili kısım aşağıda ki kod
<div class="clear"> </div><?php foreach( $videos[ 'title' ] as $key => $value ) { echo PHP_EOL; ?>
<!-- # VIDEO <?php echo $key + 1; ?> # -->
<div class="videoLinkLabel"><a href="<?php echo $videos[ 'watch_page_url' ][ $key ]; ?>" target="_blank"><?php echo $videos[ 'title' ][ $key ]; ?></a></div>
<div class="videoStatus" style="color: <?php echo $videos[ 'isAddedColor' ][ $key ]; ?>;"><?php echo $videos[ 'isAddedText' ][ $key ]; ?></div>
<div class="videoSelectBox">
<input type="checkbox" name="selectVideo[]" class="selectBox" value="<?php echo $key; ?>"<?php echo $videos[ 'disableStatus' ][ $key ]; ?> />
<input type="hidden" name="url[]" value="<?php echo $videos[ 'watch_page_url' ][ $key ]; ?>" />
<input type="hidden" name="title[]" value="<?php echo base64_encode( $videos[ 'title' ][ $key ] ); ?>" />
<input type="hidden" name="description[]" value="<?php echo base64_encode( $videos[ 'description' ][ $key ] ); ?>" />
<input type="hidden" name="duration[]" value="<?php echo base64_encode( $videos[ 'duration' ][ $key ] ); ?>" />
<input type="hidden" name="thumbail[]" value="<?php echo base64_encode( serialize( $videos[ 'thumbnail' ][ $key ] ) ); ?>" />
</div>
<div class="clear"> </div><?php } echo PHP_EOL; ?>
<input type="submit" name="editVideo" class="editVideo" value="Düzenle" />
<div class="clear"> </div>
<p class="copyright">Copyright © <?php echo date( 'Y' ); ?>, <a href="http://www.saintx.net/" target="_blank">www.saintx.net</a></p>
</fieldset>
</form><?php } echo PHP_EOL; if( $_POST[ 'editVideo' ] ) { ?>
<form action="" method="post">
<fieldset id="fieldset"><?php
foreach( $_POST[ 'selectVideo' ] as $key => $value ) {
$videos = $saintx->prepareContent( $_POST ); echo PHP_EOL; ?>
<div class="clear"> </div>
<label>Başlık:</label>
<input type="text" name="baslik[]" value="<?php echo $videos[ 'title' ][ $key ]; ?>" style="width:92%;font:normal 12px 'Consolas';" />
<div class="clear"> </div>
<label>Resim: </label>
<input type="text" name="resim[]" value="<?php echo $videos[ 'thumbail' ][ $key ]; ?>" style="width:92%;font:normal 12px 'Consolas';" />
<div class="clear"> </div>
<label>Adres: </label><input type="text" name="adres[]" value="<?php echo $videos[ 'watch_page' ][ $key ]; ?>" style="width:93%;font:normal 12px 'Consolas';" />
<div class="clear"> </div>
<label>Etiket:</label>
<input type="text" name="etiket[]" value="<?php echo $videos[ 'keywords' ][ $key ]; ?>" style="width:92%;font:normal 12px 'Consolas';" />
<div class="clear"> </div>
<label>Kategori:</label>
<select type="text" name="kategori[]" style="width:91%;font:normal 12px 'Consolas';"><?php $saintx->printCategory( ); ?></select>
<div class="clear"> </div><hr style="width:100%;" /><div class="clear"> </div>
<input type="hidden" name="sure[]" value="<?php echo $videos[ 'duration' ][ $key ]; ?>" /><?php } echo PHP_EOL; ?>
<input type="submit" name="ekle" class="editVideo" value="Ekle" />
<div class="clear"> </div>