За последние 24 часа нас посетили 17680 программистов и 1672 робота. Сейчас ищут 1914 программистов ...

Prototype

Тема в разделе "JavaScript и AJAX", создана пользователем Nick0, 12 ноя 2008.

  1. Nick0

    Nick0 Активный пользователь

    С нами с:
    26 июл 2008
    Сообщения:
    55
    Симпатии:
    0
    Помогите никак не могу отправить файл на загрузку через Prototype

    вот что у меня :

    [js]function upload_files()
    {
    new Ajax.Updater('avatar_load', 'ajax/upload_avatar.php', { method: 'post' });
    }[/js]

    PHP:
    1.         <tr>
    2.                         <td height=\"25\" width=\"197\"><font color=\"#808080\"><b>Файл :&nbsp;<font color=\"#FF0000\">*</font> </b></font></td>
    3.                         <td height=\"25\" width=\"403\">
    4.                         <input id=\"download\" type=\"file\" name=\"download\" size=\"35\" maxlength=\"80\"> <input type=\"button\" onclick=\"upload_files();\" value=\"загр\" name=\"B1\"></td>
    5.             </tr>
    6.             <tr>
    7.                         <td height=\"25\" width=\"197\"><font color=\"#808080\">&nbsp;</td>
    8.                         <td height=\"25\" width=\"403\">
    9.                         <div style=\"margin-bottom:5px;\" id=\"avatar_load\" align=\"left\"></div>
    10.            </td>
    11.             </tr>
    [/html]