<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Code The World — Rename uploaded file to dynamic filename]]></title>
		<link>https://codetheworld.com/viewtopic.php?id=73</link>
		<atom:link href="https://codetheworld.com/extern.php?action=feed&amp;tid=73&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Rename uploaded file to dynamic filename.]]></description>
		<lastBuildDate>Mon, 16 Jun 2008 04:03:21 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Rename uploaded file to dynamic filename]]></title>
			<link>https://codetheworld.com/viewtopic.php?pid=214#p214</link>
			<description><![CDATA[<div class="codebox"><pre><code>$cur_time = uniqid(funfile_world_);
$oname = $_FILES[&#039;image&#039;][&#039;name&#039;];
$oname = str_replace(&quot; &quot;,&quot;_&quot;,$oname);
$oname = str_replace(&quot;%20&quot;,&quot;&quot;,$oname);
$uploaddir  = &#039;files/&#039;;

       $new_filename = $cur_time . &#039;_&#039; . $oname;
       rename($uploaddir . $oname, $uploaddir . $new_filename);</code></pre></div><p>there you go</p>]]></description>
			<author><![CDATA[null@example.com (a3d2i2)]]></author>
			<pubDate>Mon, 16 Jun 2008 04:03:21 +0000</pubDate>
			<guid>https://codetheworld.com/viewtopic.php?pid=214#p214</guid>
		</item>
	</channel>
</rss>
