Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I upload a simple swf for flash game site?
    primarykey
    data
    text
    <p>Swf and I want to upload a picture file. Codes are as follows. What is the problem?</p> <pre><code>if ($_FILES["o_img"]["error"] &gt; 0 and $_FILES["o_swf"]["error"] &gt; 0) { echo "Return Code: " . $_FILES["o_img"]["error"] . "&lt;br /&gt;"; echo "Return Code: " . $_FILES["o_swf"]["error"] . "&lt;br /&gt;"; } else { if (file_exists("../resimler" . $_FILES["o_img"]["name"]) and file_exists("../swf" . $_FILES["o_swf"]["name"])) { echo $_FILES["o_img"]["name"] . "bu isimde bir resim daha önce yüklenmiş "; echo $_FILES["o_swf"]["name"] . "bu isimde bir resim daha önce yüklenmiş "; } else { move_uploaded_file($_FILES["o_img"]["tmp_name"], "upload/" . $_FILES["o_img"]["name"]); move_uploaded_file($_FILES["o_swf"]["tmp_name"], "upload/" . $_FILES["o_swf"]["name"]); } } </code></pre> <p>My Form:</p> <pre><code> &lt;form action="" method="post" enctype="multipart/form-data" name="form1" id="form1"&gt; &lt;p&gt; &lt;input type="text" name="o_baslik" id="o_baslik" /&gt; : Oyun İsmi&lt;/p&gt; &lt;p&gt;&lt;br /&gt; &lt;input type="text" name="o_etiketler" id="o_etiketler" /&gt; : Oyunun Etiketleri&lt;/p&gt; &lt;p&gt;&lt;br /&gt; &lt;input type="file" name="o_img" id="o_img" /&gt; :Oyun Resmi &lt;/p&gt; &lt;p&gt;&lt;br /&gt; &lt;input type="file" name="o_swf" id="o_swf" /&gt; SWF Dosyası&lt;br /&gt; &lt;/p&gt; &lt;input type="submit"/&gt; &lt;/form&gt; </code></pre> <p>My errors=</p> <pre><code>Warning: move_uploaded_file(upload/71IwNCX6PhL__SL1500_.jpg) [function.move-uploaded-file]: failed to open stream: No such file or directory in C:\AppServ\www\tasarim\admpanel\yeni.php on line 65 Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\Windows\Temp\phpD014.tmp' to 'upload/71IwNCX6PhL__SL1500_.jpg' in C:\AppServ\www\tasarim\admpanel\yeni.php on line 65 Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\tasarim\admpanel\yeni.php:6) in C:\AppServ\www\tasarim\admpanel\yeni.php on line 77 </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload