Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for PHP form 60: input text textarea file
Falah Al Fitri
Falah Al Fitri

Posted on • Edited on

     

PHP form 60: input text textarea file


Happy Coding

index.php

    <form method="post" action="process.php" >        Firstname: <input type="text" name="firstname" />        <br />        Lastname: <input type="text" name="lastname" />        <br />        Description: <textarea name="description" rows="10" cols="50"></textarea>        <br />        File Upload: <input type="file" name="upload" /><br />        Preview: <img src="#" /> <br />        <hr />        <input type="submit" name="submit" value="Submit" />    </form>
Enter fullscreen modeExit fullscreen mode

process.php

$data = array(    "post"  => $_POST,    "files" => $_FILES);echo "<pre>";// echo json_encode($data);var_dump($data);
Enter fullscreen modeExit fullscreen mode

Demorepl.it


Thank for reading :)

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

I am Developer
  • Location
    Marabahan, Indonesia
  • Education
    S. Kom of UNISKA Banjarmasin
  • Work
    Toy Seller
  • Joined

More fromFalah Al Fitri

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp