Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Er. Rochak Chauhan  >  AJAX File Uploader  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example Script
Class: AJAX File Uploader
Browse files uploaded without page reloading
Author: By
Last change: Security Patch Added
Date: 2008-10-11 09:38
Size: 1,034 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <title>AJAX File uploader</title>
        <script type="text/javascript" src="uploader.js" ></script>
            <style type="text/css">
            body{ font-family: verdana; font-size: 12px;}
            a{ font-family:verdana; font-size:12px;text-decoration:none; color:#000000;}
            a:hover{font-family:verdana;font-size: 12px;text-decoration:underline; color: #FF0000;}
            .link{ border:0px; padding:0px; margin:0px; text-decoration:none;}
            
        </style>
    </head>
    <body>
<?php
    
// This is the folder where file are uploaded
    //$uploadDirectory = "testdir";    for security reasons,  hardcode the name of the directrory in imageupload.php
    
require_once("AjaxFileUploader.inc.php");
    
$ajaxFileUploader = new AjaxFileuploader($uploadDirectory="");    
    echo 
$ajaxFileUploader->showFileUploader('id1');
    echo 
$ajaxFileUploader->showFileUploader('id2');
    echo 
$ajaxFileUploader->showFileUploader('id4');
?>

</body>
</html>