<?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 — read file extension]]></title>
		<link>https://codetheworld.com/viewtopic.php?id=72</link>
		<atom:link href="https://codetheworld.com/extern.php?action=feed&amp;tid=72&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in read file extension.]]></description>
		<lastBuildDate>Mon, 16 Jun 2008 07:38:55 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: read file extension]]></title>
			<link>https://codetheworld.com/viewtopic.php?pid=239#p239</link>
			<description><![CDATA[<p>Below should do the trick without diff code <img src="https://codetheworld.com/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><div class="codebox"><pre><code>$extension = strtolower($_FILES[&#039;image&#039;][&#039;tmp_name&#039;]);</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Terry)]]></author>
			<pubDate>Mon, 16 Jun 2008 07:38:55 +0000</pubDate>
			<guid>https://codetheworld.com/viewtopic.php?pid=239#p239</guid>
		</item>
		<item>
			<title><![CDATA[read file extension]]></title>
			<link>https://codetheworld.com/viewtopic.php?pid=213#p213</link>
			<description><![CDATA[<div class="codebox"><pre><code>$ftmp = $_FILES[&#039;image&#039;][&#039;tmp_name&#039;];
$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);
$fname = $uploaddir.$oname;

        $fileInfo = pathinfo($fname);
        $extension = strtolower($fileInfo[&quot;extension&quot;]);    

                                // do your work here... :)</code></pre></div><p>so you can just use the $extension to make more condition...</p>]]></description>
			<author><![CDATA[null@example.com (a3d2i2)]]></author>
			<pubDate>Mon, 16 Jun 2008 03:59:50 +0000</pubDate>
			<guid>https://codetheworld.com/viewtopic.php?pid=213#p213</guid>
		</item>
	</channel>
</rss>
