A Simple File Uploader in PHP

Hi, as upload is a necessity today, many would need this type of uploader for simple use.
1st create a php file named upload.php
Now put the below content in it and run it in your local server.
Not enctype=”multipart/form-data” is mandatory for file uploads in the HTML Form.
<!– put all in upload.php file –>
<form action=”upload.php” method=”post” enctype=”multipart/form-data”>
Browse [...]

Parsing XML in ASP with JavaScript

Hi ,
I have came around a situation once where I have to user xml parsing in one of my asp file.
I found this script by googling and tought it might help others as well.
Parsing XML
All modern browsers have a build-in XML parser that can be used to read and manipulate XML.
The parser reads XML into [...]