<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How Can I Create A Video Uploader For My  Website Using Php Or Html?</title>
	<atom:link href="http://www.spiderphp.com/uncategorized/how-can-i-create-a-video-uploader-for-my-website-using-php-or-html.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.spiderphp.com/uncategorized/how-can-i-create-a-video-uploader-for-my-website-using-php-or-html.html</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 28 Feb 2010 19:00:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jason</title>
		<link>http://www.spiderphp.com/uncategorized/how-can-i-create-a-video-uploader-for-my-website-using-php-or-html.html/comment-page-1#comment-418</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 01 Jul 2009 18:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.spiderphp.com/faq/how-can-i-create-a-video-uploader-for-my-website-using-php-or-html.html#comment-418</guid>
		<description>Yes using PHP.  This will upload the files to URL.com/uploads and limit the max file size (you can change that) to 10MB:
uploader.html:
&lt;form enctype=&quot;multipart/form-data&quot; action=&quot;uploader.php&quot; method=&quot;POST&quot;&gt;
&lt;input type=&quot;hidden&quot; name=&quot;MAX_FILE_SIZE&quot; value=&quot;10000000&quot; /&gt;
Choose a file to upload: &lt;input name=&quot;uploadedfile&quot; type=&quot;file&quot; /&gt;
&lt;input type=&quot;submit&quot; value=&quot;Upload File&quot; /&gt;
&lt;/form&gt;
upload.php:
&lt;?php
$target_path = &quot;uploads/&quot;;
$target_path = $target_path . basename( $_FILES[&#039;uploadedfile&#039;][&#039;name&#039;]); 
if(move_uploaded_file($_FILES[&#039;uploade... $target_path)) {
    echo &quot;The file &quot;.  basename( $_FILES[&#039;uploadedfile&#039;][&#039;name&#039;]). 
    &quot; has been uploaded&quot;;
} else{
    echo &quot;There was an error uploading the file, please try again!&quot;;
}
?&gt;
** if the code doesn&#039;t show right, send me an email (gorringeja4@hotmail.com) and i will send u it in aan email.  Hope this helps.</description>
		<content:encoded><![CDATA[<p>Yes using PHP.  This will upload the files to URL.com/uploads and limit the max file size (you can change that) to 10MB:<br />
uploader.html:</p>
<form enctype="multipart/form-data" action="uploader.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="10000000" />
Choose a file to upload:<br />
<input name="uploadedfile" type="file" />
<input type="submit" value="Upload File" />
</form>
<p>upload.php:<br />
< ?php<br />
$target_path = "uploads/";<br />
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);<br />
if(move_uploaded_file($_FILES['uploade... $target_path)) {<br />
    echo "The file ".  basename( $_FILES['uploadedfile']['name']).<br />
    " has been uploaded";<br />
} else{<br />
    echo "There was an error uploading the file, please try again!";<br />
}<br />
?><br />
** if the code doesn&#8217;t show right, send me an email (gorringeja4@hotmail.com) and i will send u it in aan email.  Hope this helps.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
