Passing $_FILES or $_POST to a new page with PHP

后端 未结 1 1515
渐次进展
渐次进展 2020-12-21 14:39

I am currently building a new part of an existing script for a client. Currently after a users fills in some account creation info they are directed to a page where they can

相关标签:
1条回答
  • 2020-12-21 14:49

    put it in session variable...

    $_SESSION['file']=$_FILE['....']
    

    Read this This also..

    0 讨论(0)
提交回复
热议问题