Jump to content

MoisesZaragoza

New Members
  • Posts

    5
  • Joined

  • Last visited

About MoisesZaragoza

  • Birthday 08/22/1983

Contact Methods

  • Website URL
    http://

Profile Information

  • Gender
    Not Telling

MoisesZaragoza's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. i know that this topic is old but i am having this same problem now. What should i be looking for? #2013 - Lost connection to MySQL server at 'reading authorization packet', system error: 0
  2. I need to send some data to another site using “POST” variables. They are printing info on their page based on the variables that I send over. Is there a way I can get that information? Thanks
  3. Thanks i am trying it out how do i get my new content out? i am gettting a error that reads Warning: array_multisort() [function.array-multisort]: Array sizes are inconsistent in /home/content/m/p/m/mpmiami2/html/admin/secure/index_.php on line 79 This is what i have <?php $array_OriginalOrder = array(); $i=0; while ($i <= $count_Team-1): // GET TEAM $TeamID = $array_Team['TeamID'][$i]; // Get Total getAllTOTALByTeam($TeamID); // PopulateAttay $array_OriginalOrder['TeamID'][$i] = $TeamID; $array_OriginalOrder['count_getAllTOTALByTeam'][$i] = $count_getAllTOTALByTeam; echo($array_OriginalOrder['TeamID'][$i]); echo(" "); echo($array_OriginalOrder['count_getAllTOTALByTeam'][$i]); echo("<br /> "); $i++; endwhile; echo(" <br /> "); array_multisort($array_OriginalOrder['count_getAllTOTALByTeam'], SORT_ASC, $array_OriginalOrder); echo("<br /> "); $i=0; while ($i <= $count_Team-1): echo($array_OriginalOrder['TeamID'][$i]); echo(" "); echo($array_OriginalOrder['count_getAllTOTALByTeam'][$i]); echo("<br /> "); $i++; endwhile; ?> Out Put
  4. Ok What i Need to do is sort the array the order I have $array_Test['TestID'][1] ="1" $array_Test['Name'][1] = "Joe" $array_Test['order'][1] ="3" $array_Test['TestID'][2] ="2" $array_Test['Name'][2] = "Ana" $array_Test['order'][2] ="1" $array_Test['TestID'][3] ="3" $array_Test['Name'][3] = "Mara" $array_Test['order'][3] ="2" and i need them to end up like $array_Test['TestID'][1] ="3" $array_Test['Name'][1] = "Mara" $array_Test['order'][1] ="2" $array_Test['TestID'][2] ="2" $array_Test['Name'][2] = "Ana" $array_Test['order'][2] ="1" $array_Test['TestID'][3] ="1" $array_Test['Name'][3] = "Joe" $array_Test['order'][3] ="3"
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.