Mesaj birleştirin ve HTML yükleyin nasıl

0 Cevap
<body>
    <form method="post" action="xx.php" >
        Enter Title of the Post<INPUT type="text" name="title">
    <br/>
    Enter Description
    <textarea rows="10" cols="50" wrap="physical" name="post">
    </textarea><br/>
    <input type="Submit" value="Post">

    <br/><br/>


  <form enctype="multipart/form-data" action="xx.php" method="post">
    <input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
    Choose a file to upload: <input name="uploaded_file" type="file" />
    <input type="submit" value="Upload" />
  </form>

Nasıl kullanıcı tek bir düğmeye basarak metin ve dosya upload ediyorum hem de sadece bundan sonra, metin yazmak ve görüntü taramak için olsun mu?

0 Cevap