Re: fwrite and sort

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



http://php.net/asort


On Mon, March 21, 2005 12:29 pm, Sebastian said:
> i have a form with checkboxes which after POST it writes to a file.
> i would like to allow the user to sort the selected checkbox filename in
> the
> order they want it written to file.
>
> so i was thinking creating an input text box where they can enter a
> number,
> then have it written to file in that order.. question is how?
> the script starts like such:
>
>   foreach($_POST['map'] AS $file)
>   {
>    if(file_exists('/maps/'.trim($file)))
>    {
>     $found .= $file;
>    }
>   }
>
>   if (file_exists($mapcycle) && $found)
>   {
>    $fp = fopen($mapcycle, 'w');
>    fwrite($fp, $found);
>    fclose($fp);
>   }
>
> any help is appreciated.
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux