Jump to content

návod [PHP-TUT]Upload


Nikes

Recommended Posts

Čus koukal jsem že KIllbill psal že by chtěl upload system a Smoke mu ho napsal tk tu to máte celé znova!

 

Takže začnem

 

Do rootu nahrajte složku s jménem : uploads

a ještě v rootu uděláme soubor s nickem upload.php a do něj vložíme toto

 

<?php

$adresa = "http://pawno.cz/upload/";

if (is_uploaded_file($subor)):

$cesta="uploads/"; //vytvor zlozku uploads a musis zmenit atributy na 777

if (move_uploaded_file ($subor, $cesta.$subor_name)):

echo 'Název souboru: $subor_name || Soubor byl úspešně uploadnutý: Adresát souboru: $adresa$cesta$subor_name';

else:

echo 'Pri nahravaní došlo k chybě';

endif;

endif;

echo '

';

echo '';

echo '

';

echo '

';

?>

 

 

no a teď jděte na svůj web např: mujweb.cz/upload.php

 

 

a tam by měl být upload

 

jestli to nejde tak nevim :d

Link to comment
Share on other sites

  • 1 month later...
  • 3 weeks later...

cc pls help uploadnem subor a pise toto:

Název souboru: $subor_name || Soubor byl úspešne uploadnutý: Adresát souboru: $adresa$cesta$subor_name

 

 

a ked kliknem na tu adresu tak ze error404 subor nenajdeny v com mam chybu?

Link to comment
Share on other sites

cc pls help uploadnem subor a pise toto:

Název souboru: $subor_name || Soubor byl úspešne uploadnutý: Adresát souboru: $adresa$cesta$subor_name

 

 

a ked kliknem na tu adresu tak ze error404 subor nenajdeny v com mam chybu?

Nastav si CHMOD slozky na 777, i kdyz je pravda ze ani me tenhle upload nesel..

Link to comment
Share on other sites

  • 2 weeks later...
echo 'Název souboru: $subor_name || Soubor byl úspešně uploadnutý: Adresát souboru: $adresa$cesta$subor_name';

 

si změn na

 

echo "Název souboru: $subor_name || Soubor byl úspešně uploadnutý: Adresát souboru: $adresa$cesta$subor_name";

 

poopravim ta :) , možno pojde aj hento :)

echo "Název souboru: ".$subor_name." || Soubor byl úspešně uploadnutý: Adresát souboru: ".$adresa$cesta$subor_name."";

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...