Sıralama $ _POST değişkenler

4 Cevap php

Hello guys Might be an easy for you guys. I am trying to sort the $_POST variables that were sent by a form and update the sorted result in mysql. I am not sure how to do it and appreciate it anyone can help me about it.

Benim main.php

//I have a loop here. (omitted)
//$k will be increased by 1 every time the loop starts, so I will know the total times of the loops
//the form will be submitted to update.php


echo "<input type='hidden' name='pickTotal' value='".$k."' />";
echo "<input type='hidden' id='point' name='earnedPoint".$k."' value='".$point."' />";
echo "<input type='hidden' id='users' name='userName".$k."' value='".$userPick['user']."' />";

//loop ends

Benim update.php

if(isset($_POST['submit'])){

    $pickTotal=$_POST['pickTotal']; //get the total loop

    for ($p=0;$p<=$pickTotal;$p++){

        $userToBeUpdated=$_POST['userName'.$p]; 
    $userPoint=$_POST['earnedPoint'.$p]; 

       //sort the $userPoint here. 
       //I need to find out who got the most points
       //and list user's place. 1st, 2nd, 3rd...etc. 


       //update my mysql
    }

Herhangi için teşekkürler yardımcı olur.

4 Cevap

Bunun yerine $ k ve $ p kadar sayma, sen Phps özel form adı sözdizimi kullanmanız gerekir:

 <input name="earnedPoint[]" value="...">
 <input name="userName[]" value="...">

Eğer, zaten liste olarak $ _POST ["earnedPoint"] hem parametreleri almak bu şekilde [0] $ _POST kadar ["earnedPoint"] [99] $ _POST ["username"] karşılık [0] .. [99].

Sonra sadece iki diziler haritası:

 $sort_us = array_combine($keys=$_POST["userName"], $values=$_POST["eP"]);
 arsort($sort_us);

Bu size en yüksek ilk almalısınız.

Ben Mario önerilen ne çok benzer bir şey önermek, ama biraz farklı bir şekilde olacaktır:

echo "<input type='hidden' id='point' name='user[$k][points]' value='".$point."' />";
echo "<input type='hidden' id='users' name='user[$k][name]' value='".$userPick['user']."' />";

Eğer $_POST geri döndüğümde, böyle bir dizi olacak:

$_POST['user'] = array(
    0 => array(
        points => 15,
        name => joe
    ),
    1 => array(
        points => 21,
        name => john
    )
);

Oradan usort özel bir sıralama işlevi ile gelip kullanabilirsiniz:

$data = $_POST['user'];
usort($data, 'usortPost');

function usortPost($a, $b) {
    if ($a['points'] == $b['points']) return 0;
    return $a['points'] < $b['points'] ? 1 : -1;
}

Sıralamak için bir ölçüt olmalıdır.

Neyse, sort function size yardımcı olacaktır.

Sen, daha önce belirtildiği gibi, PHP tarafından sunulan bir sözdizimi şeker kullanabilirsiniz:

echo "<input type='hidden' id='point' name='earnedPoint[{$userPick['user']}]' value='".$point."' />";

Böyle arka sonunda bu ele verebilir:

foreach ($_POST['earnedPoint'] as $user => $points) {
    // update your SQL table
}

asort($_POST['earnedPoint']); // sort array in ascending order, maintain index assoc

// save your data somehow