<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: danimohamadnejad</title>
    <description>The latest articles on DEV Community by danimohamadnejad (@danimohamadnejad).</description>
    <link>https://dev.to/danimohamadnejad</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F464804%2Fdfb9f8d2-f778-4878-898a-2dadf0222a26.png</url>
      <title>DEV Community: danimohamadnejad</title>
      <link>https://dev.to/danimohamadnejad</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/danimohamadnejad"/>
    <language>en</language>
    <item>
      <title>Why session does not update for upload progress?</title>
      <dc:creator>danimohamadnejad</dc:creator>
      <pubDate>Mon, 07 Sep 2020 03:47:28 +0000</pubDate>
      <link>https://dev.to/danimohamadnejad/why-session-does-not-update-for-upload-progress-15h8</link>
      <guid>https://dev.to/danimohamadnejad/why-session-does-not-update-for-upload-progress-15h8</guid>
      <description>&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;?php
session_start(); 
 if($_SERVER['REQUEST_METHOD']=='POST'){ 
   print_r($_SESSION);  
 }
?&amp;gt;
&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
     &amp;lt;div class="min"&amp;gt;
     &amp;lt;form action="&amp;lt;?php echo $_SERVER['PHP_SELF']?&amp;gt;" method="POST" enctype="multipart/form-data"&amp;gt;
 &amp;lt;input type="hidden" name="&amp;lt;?php echo ini_get("session.upload_progress.name"); ?&amp;gt;" value="123" /&amp;gt;
 &amp;lt;input type="file" name="file1" /&amp;gt;
 &amp;lt;input type="submit" /&amp;gt;
&amp;lt;/form&amp;gt;
     &amp;lt;/div&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Hi Above is my HTML and PHP code and I want to be able to track upload progression. Above code does not work because session does not update. Can anybody help me with this? any help will be appreciated.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
