İyinet'e Hoşgeldiniz!

Türkiye'nin En Eski Webmaster Forum'una Hemen Kayıt Olun!

Kayıt Ol!

PHP de 400 değerin kısa yoldan toplanması

TheScorpion

0
İyinet Üyesi
Katılım
25 Ocak 2007
Mesajlar
158
Reaction score
0
Kod:
$birinci_sayi = $_REQUEST['checkbox1'];
$ikinci_sayi = $_REQUEST['checkbox2'];
...
...
...
$döryüzüncü_sayi = $_REQUEST['checkbox400'];
$toplam=$birinci_sayi + $ikinci_sayi + ... + $döryüzüncü_sayi  ;

Bu işlemi kısa yoldan yapmak mümkün mü ?
 

ploop

0
İyinet Üyesi
Katılım
11 Ekim 2004
Mesajlar
6,964
Reaction score
0
Konum
karavan
input name kısmında checkbox1 checkbox2 diye tanımlama, checkbox[] olarak tanımla hepsini.. Yani 400 tane checkbox[] olacak elinde.. Daha sonra da echo array_sum($checkbox); yaz gitsin.. Denemedim ama mantıken olması lazım :)

hesapla.php:

Kod:
<?
extract($_POST);
if ($submit) {
echo array_sum($checkbox);
}
?>
<form action="hesapla.php" method="POST" name="form1" onsubmit="return formCheck(this);">
	<table>
		<tr><td width="100">Sayılar</td><td width="350">: <input type="checkbox" name="checkbox[]" value="1">1</td></tr>
		<tr><td width="100">Sayılar</td><td width="350">: <input type="checkbox" name="checkbox[]" value="2">2</td></tr>
		<tr><td width="100">Sayılar</td><td width="350">: <input type="checkbox" name="checkbox[]" value="3">3</td></tr>
		<tr><td width="100">Sayılar</td><td width="350">: <input type="checkbox" name="checkbox[]" value="4">4</td></tr>
		<tr><td></td><td><input type="submit" name="submit" value="Submit"></td></tr>
	</table>
</form>
 

Bumber

0
İyinet Üyesi
Katılım
15 Şubat 2008
Mesajlar
216
Reaction score
1
Konum
Istanbul
PHP:
$f = 0;
for($k = 0;$k <= 400; $k++) {
$f = $f+ $_REQUEST["checkbox$k"];
}

echo $f;

gibi birşeyde olabilir
 

TheScorpion

0
İyinet Üyesi
Katılım
25 Ocak 2007
Mesajlar
158
Reaction score
0
ikisinide denedim ikiside işe yaradı tşkler. ploop arkdaşımın verdiği daha kestirme gibi görünüyor ama istediğim formatta çalıştıramadım.

Bu dosyayı .php ve .html olarak 2 parçada yazdırıyorum. Yani tema dosyası olarak kullanıyorum. Kodları o şekilde kullanınca çalıştıramadım.
 

ploop

0
İyinet Üyesi
Katılım
11 Ekim 2004
Mesajlar
6,964
Reaction score
0
Konum
karavan
Neyi html'e ekledin neyi php'ye ekledin? form action'ı değistirdin mi?
 

TheScorpion

0
İyinet Üyesi
Katılım
25 Ocak 2007
Mesajlar
158
Reaction score
0
siparis3.php
Kod:
extract($_POST);
if ($submit) {
$toplam = array_sum($checkbox);
$bolunmus_sayi=ceil($toplam/4702989189);
}

$template->assign_vars(array(
	'DVD_RESIM'			=> '<img src="image' . $bolunmus_sayi . '.jpg"',
	'DVD_SAYI'			=> $toplam,
));

$template->set_filenames(array(
	'body' => 'portal/psp2.html'
));

psp2.html
Kod:
{DVD_RESIM}
{DVD_SAYI}
<form action="siparis3.php" method="POST" name="form1" onsubmit="return formCheck(this);">


<BR><INPUT type="checkbox" name="checkbox[]" value="86478111" > veri1
<BR><INPUT type="checkbox" name="checkbox[]" value="108084773" > veri2
<BR><INPUT type="checkbox" name="checkbox[]" value="134293483" > veri3
<BR><INPUT type="checkbox" name="checkbox[]" value="217645610" > veri4

BUşekilde yapınca çalışmadı
 

TheScorpion

0
İyinet Üyesi
Katılım
25 Ocak 2007
Mesajlar
158
Reaction score
0
500 veriyi elle yazarak topladım yine yanlış sonuç veriyo
$toplam1 = $_REQUEST['checkbox1'] + $_REQUEST['checkbox2'] + $_REQUEST['checkbox3'] + $_REQUEST['checkbox4'] + $_REQUEST['checkbox5'] + $_REQUEST['checkbox6'] + $_REQUEST['checkbox7'] + $_REQUEST['checkbox8'] + $_REQUEST['checkbox9'] + $_REQUEST['checkbox10'] + $_REQUEST['checkbox11'] + $_REQUEST['checkbox12'] + $_REQUEST['checkbox13'] + $_REQUEST['checkbox14'] + $_REQUEST['checkbox15'] + $_REQUEST['checkbox16'] + $_REQUEST['checkbox17'] + $_REQUEST['checkbox18'] + $_REQUEST['checkbox19'] + $_REQUEST['checkbox20'] + $_REQUEST['checkbox21'] + $_REQUEST['checkbox22'] + $_REQUEST['checkbox23'] + $_REQUEST['checkbox24'] + $_REQUEST['checkbox25'] + $_REQUEST['checkbox26'] + $_REQUEST['checkbox27'] + $_REQUEST['checkbox28'] + $_REQUEST['checkbox29'] + $_REQUEST['checkbox30'] + $_REQUEST['checkbox31'] + $_REQUEST['checkbox32'] + $_REQUEST['checkbox33'] + $_REQUEST['checkbox34'] + $_REQUEST['checkbox35'] + $_REQUEST['checkbox36'] + $_REQUEST['checkbox37'] + $_REQUEST['checkbox38'] + $_REQUEST['checkbox39'] + $_REQUEST['checkbox40'] + $_REQUEST['checkbox41'] + $_REQUEST['checkbox42'] + $_REQUEST['checkbox43'] + $_REQUEST['checkbox44'] + $_REQUEST['checkbox45'] + $_REQUEST['checkbox46'] + $_REQUEST['checkbox47'] + $_REQUEST['checkbox48'] + $_REQUEST['checkbox49'] + $_REQUEST['checkbox50'] + $_REQUEST['checkbox51'] + $_REQUEST['checkbox52'] + $_REQUEST['checkbox53'] + $_REQUEST['checkbox54'] + $_REQUEST['checkbox55'] + $_REQUEST['checkbox56'] + $_REQUEST['checkbox57'] + $_REQUEST['checkbox58'] + $_REQUEST['checkbox59'] + $_REQUEST['checkbox60'] + $_REQUEST['checkbox61'] + $_REQUEST['checkbox62'] + $_REQUEST['checkbox63'] + $_REQUEST['checkbox64'] + $_REQUEST['checkbox65'] + $_REQUEST['checkbox66'] + $_REQUEST['checkbox67'] + $_REQUEST['checkbox68'] + $_REQUEST['checkbox69'] + $_REQUEST['checkbox70'] + $_REQUEST['checkbox71'] + $_REQUEST['checkbox72'] + $_REQUEST['checkbox73'] + $_REQUEST['checkbox74'] + $_REQUEST['checkbox75'] + $_REQUEST['checkbox76'] + $_REQUEST['checkbox77'] + $_REQUEST['checkbox78'] + $_REQUEST['checkbox79'] + $_REQUEST['checkbox80'] + $_REQUEST['checkbox81'] + $_REQUEST['checkbox82'] + $_REQUEST['checkbox83'] + $_REQUEST['checkbox84'] + $_REQUEST['checkbox85'] + $_REQUEST['checkbox86'] + $_REQUEST['checkbox87'] + $_REQUEST['checkbox88'] + $_REQUEST['checkbox89'] + $_REQUEST['checkbox90'] + $_REQUEST['checkbox91'] + $_REQUEST['checkbox92'] + $_REQUEST['checkbox93'] + $_REQUEST['checkbox94'] + $_REQUEST['checkbox95'] + $_REQUEST['checkbox96'] + $_REQUEST['checkbox97'] + $_REQUEST['checkbox98'] + $_REQUEST['checkbox99'] + $_REQUEST['checkbox100'] ;
$toplam2 = $_REQUEST['checkbox101'] + $_REQUEST['checkbox102'] + $_REQUEST['checkbox103'] + $_REQUEST['checkbox104'] + $_REQUEST['checkbox105'] + $_REQUEST['checkbox106'] + $_REQUEST['checkbox107'] + $_REQUEST['checkbox108'] + $_REQUEST['checkbox109'] + $_REQUEST['checkbox110'] + $_REQUEST['checkbox111'] + $_REQUEST['checkbox112'] + $_REQUEST['checkbox113'] + $_REQUEST['checkbox114'] + $_REQUEST['checkbox115'] + $_REQUEST['checkbox116'] + $_REQUEST['checkbox117'] + $_REQUEST['checkbox118'] + $_REQUEST['checkbox119'] + $_REQUEST['checkbox120'] + $_REQUEST['checkbox121'] + $_REQUEST['checkbox122'] + $_REQUEST['checkbox123'] + $_REQUEST['checkbox124'] + $_REQUEST['checkbox125'] + $_REQUEST['checkbox126'] + $_REQUEST['checkbox127'] + $_REQUEST['checkbox128'] + $_REQUEST['checkbox129'] + $_REQUEST['checkbox130'] + $_REQUEST['checkbox131'] + $_REQUEST['checkbox132'] + $_REQUEST['checkbox133'] + $_REQUEST['checkbox134'] + $_REQUEST['checkbox135'] + $_REQUEST['checkbox136'] + $_REQUEST['checkbox137'] + $_REQUEST['checkbox138'] + $_REQUEST['checkbox139'] + $_REQUEST['checkbox140'] + $_REQUEST['checkbox141'] + $_REQUEST['checkbox142'] + $_REQUEST['checkbox143'] + $_REQUEST['checkbox144'] + $_REQUEST['checkbox145'] + $_REQUEST['checkbox146'] + $_REQUEST['checkbox147'] + $_REQUEST['checkbox148'] + $_REQUEST['checkbox149'] + $_REQUEST['checkbox150'] + $_REQUEST['checkbox151'] + $_REQUEST['checkbox152'] + $_REQUEST['checkbox153'] + $_REQUEST['checkbox154'] + $_REQUEST['checkbox155'] + $_REQUEST['checkbox156'] + $_REQUEST['checkbox157'] + $_REQUEST['checkbox158'] + $_REQUEST['checkbox159'] + $_REQUEST['checkbox160'] + $_REQUEST['checkbox161'] + $_REQUEST['checkbox162'] + $_REQUEST['checkbox163'] + $_REQUEST['checkbox164'] + $_REQUEST['checkbox165'] + $_REQUEST['checkbox166'] + $_REQUEST['checkbox167'] + $_REQUEST['checkbox168'] + $_REQUEST['checkbox169'] + $_REQUEST['checkbox170'] + $_REQUEST['checkbox171'] + $_REQUEST['checkbox172'] + $_REQUEST['checkbox173'] + $_REQUEST['checkbox174'] + $_REQUEST['checkbox175'] + $_REQUEST['checkbox176'] + $_REQUEST['checkbox177'] + $_REQUEST['checkbox178'] + $_REQUEST['checkbox179'] + $_REQUEST['checkbox180'] + $_REQUEST['checkbox181'] + $_REQUEST['checkbox182'] + $_REQUEST['checkbox183'] + $_REQUEST['checkbox184'] + $_REQUEST['checkbox185'] + $_REQUEST['checkbox186'] + $_REQUEST['checkbox187'] + $_REQUEST['checkbox188'] + $_REQUEST['checkbox189'] + $_REQUEST['checkbox190'] + $_REQUEST['checkbox191'] + $_REQUEST['checkbox192'] + $_REQUEST['checkbox193'] + $_REQUEST['checkbox194'] + $_REQUEST['checkbox195'] + $_REQUEST['checkbox196'] + $_REQUEST['checkbox197'] + $_REQUEST['checkbox198'] + $_REQUEST['checkbox199'] + $_REQUEST['checkbox200'];
$toplam3 = $_REQUEST['checkbox201'] + $_REQUEST['checkbox202'] + $_REQUEST['checkbox203'] + $_REQUEST['checkbox204'] + $_REQUEST['checkbox205'] + $_REQUEST['checkbox206'] + $_REQUEST['checkbox207'] + $_REQUEST['checkbox208'] + $_REQUEST['checkbox209'] + $_REQUEST['checkbox210'] + $_REQUEST['checkbox211'] + $_REQUEST['checkbox212'] + $_REQUEST['checkbox213'] + $_REQUEST['checkbox214'] + $_REQUEST['checkbox215'] + $_REQUEST['checkbox216'] + $_REQUEST['checkbox217'] + $_REQUEST['checkbox218'] + $_REQUEST['checkbox219'] + $_REQUEST['checkbox220'] + $_REQUEST['checkbox221'] + $_REQUEST['checkbox222'] + $_REQUEST['checkbox223'] + $_REQUEST['checkbox224'] + $_REQUEST['checkbox225'] + $_REQUEST['checkbox226'] + $_REQUEST['checkbox227'] + $_REQUEST['checkbox228'] + $_REQUEST['checkbox229'] + $_REQUEST['checkbox230'] + $_REQUEST['checkbox231'] + $_REQUEST['checkbox232'] + $_REQUEST['checkbox233'] + $_REQUEST['checkbox234'] + $_REQUEST['checkbox235'] + $_REQUEST['checkbox236'] + $_REQUEST['checkbox237'] + $_REQUEST['checkbox238'] + $_REQUEST['checkbox239'] + $_REQUEST['checkbox240'] + $_REQUEST['checkbox241'] + $_REQUEST['checkbox242'] + $_REQUEST['checkbox243'] + $_REQUEST['checkbox244'] + $_REQUEST['checkbox245'] + $_REQUEST['checkbox246'] + $_REQUEST['checkbox247'] + $_REQUEST['checkbox248'] + $_REQUEST['checkbox249'] + $_REQUEST['checkbox250'] + $_REQUEST['checkbox251'] + $_REQUEST['checkbox252'] + $_REQUEST['checkbox253'] + $_REQUEST['checkbox254'] + $_REQUEST['checkbox255'] + $_REQUEST['checkbox256'] + $_REQUEST['checkbox257'] + $_REQUEST['checkbox258'] + $_REQUEST['checkbox259'] + $_REQUEST['checkbox260'] + $_REQUEST['checkbox261'] + $_REQUEST['checkbox262'] + $_REQUEST['checkbox263'] + $_REQUEST['checkbox264'] + $_REQUEST['checkbox265'] + $_REQUEST['checkbox266'] + $_REQUEST['checkbox267'] + $_REQUEST['checkbox268'] + $_REQUEST['checkbox269'] + $_REQUEST['checkbox270'] + $_REQUEST['checkbox271'] + $_REQUEST['checkbox272'] + $_REQUEST['checkbox273'] + $_REQUEST['checkbox274'] + $_REQUEST['checkbox275'] + $_REQUEST['checkbox276'] + $_REQUEST['checkbox277'] + $_REQUEST['checkbox278'] + $_REQUEST['checkbox279'] + $_REQUEST['checkbox280'] + $_REQUEST['checkbox281'] + $_REQUEST['checkbox282'] + $_REQUEST['checkbox283'] + $_REQUEST['checkbox284'] + $_REQUEST['checkbox285'] + $_REQUEST['checkbox286'] + $_REQUEST['checkbox287'] + $_REQUEST['checkbox288'] + $_REQUEST['checkbox289'] + $_REQUEST['checkbox290'] + $_REQUEST['checkbox291'] + $_REQUEST['checkbox292'] + $_REQUEST['checkbox293'] + $_REQUEST['checkbox294'] + $_REQUEST['checkbox295'] + $_REQUEST['checkbox296'] + $_REQUEST['checkbox297'] + $_REQUEST['checkbox298'] + $_REQUEST['checkbox299'] + $_REQUEST['checkbox300'];
$toplam4 = $_REQUEST['checkbox301'] + $_REQUEST['checkbox302'] + $_REQUEST['checkbox303'] + $_REQUEST['checkbox304'] + $_REQUEST['checkbox305'] + $_REQUEST['checkbox306'] + $_REQUEST['checkbox307'] + $_REQUEST['checkbox308'] + $_REQUEST['checkbox309'] + $_REQUEST['checkbox310'] + $_REQUEST['checkbox311'] + $_REQUEST['checkbox312'] + $_REQUEST['checkbox313'] + $_REQUEST['checkbox314'] + $_REQUEST['checkbox315'] + $_REQUEST['checkbox316'] + $_REQUEST['checkbox317'] + $_REQUEST['checkbox318'] + $_REQUEST['checkbox319'] + $_REQUEST['checkbox320'] + $_REQUEST['checkbox321'] + $_REQUEST['checkbox322'] + $_REQUEST['checkbox323'] + $_REQUEST['checkbox324'] + $_REQUEST['checkbox325'] + $_REQUEST['checkbox326'] + $_REQUEST['checkbox327'] + $_REQUEST['checkbox328'] + $_REQUEST['checkbox329'] + $_REQUEST['checkbox330'] + $_REQUEST['checkbox331'] + $_REQUEST['checkbox332'] + $_REQUEST['checkbox333'] + $_REQUEST['checkbox334'] + $_REQUEST['checkbox335'] + $_REQUEST['checkbox336'] + $_REQUEST['checkbox337'] + $_REQUEST['checkbox338'] + $_REQUEST['checkbox339'] + $_REQUEST['checkbox340'] + $_REQUEST['checkbox341'] + $_REQUEST['checkbox342'] + $_REQUEST['checkbox343'] + $_REQUEST['checkbox344'] + $_REQUEST['checkbox345'] + $_REQUEST['checkbox346'] + $_REQUEST['checkbox347'] + $_REQUEST['checkbox348'] + $_REQUEST['checkbox349'] + $_REQUEST['checkbox350'] + $_REQUEST['checkbox351'] + $_REQUEST['checkbox352'] + $_REQUEST['checkbox353'] + $_REQUEST['checkbox354'] + $_REQUEST['checkbox355'] + $_REQUEST['checkbox356'] + $_REQUEST['checkbox357'] + $_REQUEST['checkbox358'] + $_REQUEST['checkbox359'] + $_REQUEST['checkbox360'] + $_REQUEST['checkbox361'] + $_REQUEST['checkbox362'] + $_REQUEST['checkbox363'] + $_REQUEST['checkbox364'] + $_REQUEST['checkbox365'] + $_REQUEST['checkbox366'] + $_REQUEST['checkbox367'] + $_REQUEST['checkbox368'] + $_REQUEST['checkbox369'] + $_REQUEST['checkbox370'] + $_REQUEST['checkbox371'] + $_REQUEST['checkbox372'] + $_REQUEST['checkbox373'] + $_REQUEST['checkbox374'] + $_REQUEST['checkbox375'] + $_REQUEST['checkbox376'] + $_REQUEST['checkbox377'] + $_REQUEST['checkbox378'] + $_REQUEST['checkbox379'] + $_REQUEST['checkbox380'] + $_REQUEST['checkbox381'] + $_REQUEST['checkbox382'] + $_REQUEST['checkbox383'] + $_REQUEST['checkbox384'] + $_REQUEST['checkbox385'] + $_REQUEST['checkbox386'] + $_REQUEST['checkbox387'] + $_REQUEST['checkbox388'] + $_REQUEST['checkbox389'] + $_REQUEST['checkbox390'] + $_REQUEST['checkbox391'] + $_REQUEST['checkbox392'] + $_REQUEST['checkbox393'] + $_REQUEST['checkbox394'] + $_REQUEST['checkbox395'] + $_REQUEST['checkbox396'] + $_REQUEST['checkbox397'] + $_REQUEST['checkbox398'] + $_REQUEST['checkbox399'] + $_REQUEST['checkbox400'];
$toplam5 = $_REQUEST['checkbox401'] + $_REQUEST['checkbox402'] + $_REQUEST['checkbox403'] + $_REQUEST['checkbox404'] + $_REQUEST['checkbox405'] + $_REQUEST['checkbox406'] + $_REQUEST['checkbox407'] + $_REQUEST['checkbox408'] + $_REQUEST['checkbox409'] + $_REQUEST['checkbox410'] + $_REQUEST['checkbox411'] + $_REQUEST['checkbox412'] + $_REQUEST['checkbox413'] + $_REQUEST['checkbox414'] + $_REQUEST['checkbox415'] + $_REQUEST['checkbox416'] + $_REQUEST['checkbox417'] + $_REQUEST['checkbox418'] + $_REQUEST['checkbox419'] + $_REQUEST['checkbox420'] + $_REQUEST['checkbox421'] + $_REQUEST['checkbox422'] + $_REQUEST['checkbox423'] + $_REQUEST['checkbox424'] + $_REQUEST['checkbox425'] + $_REQUEST['checkbox426'] + $_REQUEST['checkbox427'] + $_REQUEST['checkbox428'] + $_REQUEST['checkbox429'] + $_REQUEST['checkbox430'] + $_REQUEST['checkbox431'] + $_REQUEST['checkbox432'] + $_REQUEST['checkbox433'] + $_REQUEST['checkbox434'] + $_REQUEST['checkbox435'] + $_REQUEST['checkbox436'] + $_REQUEST['checkbox437'] + $_REQUEST['checkbox438'] + $_REQUEST['checkbox439'] + $_REQUEST['checkbox440'] + $_REQUEST['checkbox441'] + $_REQUEST['checkbox442'] + $_REQUEST['checkbox443'] + $_REQUEST['checkbox444'] + $_REQUEST['checkbox445'] + $_REQUEST['checkbox446'] + $_REQUEST['checkbox447'] + $_REQUEST['checkbox448'] + $_REQUEST['checkbox449'] + $_REQUEST['checkbox450'] + $_REQUEST['checkbox451'] + $_REQUEST['checkbox452'] + $_REQUEST['checkbox453'] + $_REQUEST['checkbox454'] + $_REQUEST['checkbox455'] + $_REQUEST['checkbox456'] + $_REQUEST['checkbox457'] + $_REQUEST['checkbox458'] + $_REQUEST['checkbox459'] + $_REQUEST['checkbox460'] + $_REQUEST['checkbox461'] + $_REQUEST['checkbox462'] + $_REQUEST['checkbox463'] + $_REQUEST['checkbox464'] + $_REQUEST['checkbox465'] + $_REQUEST['checkbox466'] + $_REQUEST['checkbox467'] + $_REQUEST['checkbox468'] + $_REQUEST['checkbox469'] + $_REQUEST['checkbox470'] + $_REQUEST['checkbox471'] + $_REQUEST['checkbox472'] + $_REQUEST['checkbox473'] + $_REQUEST['checkbox474'] + $_REQUEST['checkbox475'] + $_REQUEST['checkbox476'] + $_REQUEST['checkbox477'] + $_REQUEST['checkbox478'] + $_REQUEST['checkbox479'] + $_REQUEST['checkbox480'] + $_REQUEST['checkbox481'] + $_REQUEST['checkbox482'] + $_REQUEST['checkbox483'] + $_REQUEST['checkbox484'] + $_REQUEST['checkbox485'] + $_REQUEST['checkbox486'] + $_REQUEST['checkbox487'] + $_REQUEST['checkbox488'] + $_REQUEST['checkbox489'] + $_REQUEST['checkbox490'] + $_REQUEST['checkbox491'] + $_REQUEST['checkbox492'] + $_REQUEST['checkbox493'] + $_REQUEST['checkbox494'] + $_REQUEST['checkbox495'] + $_REQUEST['checkbox496'] + $_REQUEST['checkbox497'] + $_REQUEST['checkbox498'] + $_REQUEST['checkbox499'] + $_REQUEST['checkbox500'];
$f = $toplam1 + $toplam2 + $toplam3 + $toplam4 + $toplam5;

exelde topluyorum sonuç doğru. php de aynı yanlış sonuç çıkıyo. Kafayı sıyırcam bi anlam veremedim. Bir fikri olan var mı ?
 

Bumber

0
İyinet Üyesi
Katılım
15 Şubat 2008
Mesajlar
216
Reaction score
1
Konum
Istanbul
$f = 0;
for($k = 0;$k <= 400; $k++) {
$_POST["checkbox$k"] = round($_REQUEST["checkbox$k"],2);
$f = $f + $_POST["checkbox$k"];
}

echo $f;

halamı hatalı
 

TheScorpion

0
İyinet Üyesi
Katılım
25 Ocak 2007
Mesajlar
158
Reaction score
0
Yazım hatası verdi hocam

Fatal error: Call to undefined function int() in /home/trfighte/public_html/siparis.php on line 56


İlk 200 veriyi işleme soktuğunu farkettim. Tam olarak 200 veriyi topluyor diğer verileri işleme almıyor.
 

Bumber

0
İyinet Üyesi
Katılım
15 Şubat 2008
Mesajlar
216
Reaction score
1
Konum
Istanbul
kodu düzenledim tekrar bakarmısın,
+ olarak o GB olarak döndüren fonksiyonuda görsek fena olmaz.
 

TheScorpion

0
İyinet Üyesi
Katılım
25 Ocak 2007
Mesajlar
158
Reaction score
0
php de aldığım toplam 63413,94 , exeldeki toplam 168932,37

Exelde ilk 200 veriyi topluyorum tam olarak phpde çıkan sonucu veriyor.

Öyle sanıyorumki bir işlem limitine denk geldik. Formu parçalara ayırarak 3 parçada yazdırmayı düşünüyorum. Umarım işe yarar. Yinede başka bir çaresi varsa seve seve denerim.
 

Türkiye’nin ilk webmaster forum sitesi iyinet.com'da forum üyeleri tarafından yapılan tüm paylaşımlardan; Türk Ceza Kanunu’nun 20. Maddesinin, 5651 Sayılı Kanununun 4. maddesinin 2. fıkrasına göre, paylaşım yapan üyeler sorumludur.

Backlink ve Tanıtım Yazısı için iletişime geçmek için Skype Adresimiz: .cid.1580508955483fe5

seo ajansı , sosyal medya yönetimi
Üst