DEV Community

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

Posted on • Edited on

1

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 mode Exit fullscreen mode

process.php

$data = array(
    "post"  => $_POST,
    "files" => $_FILES
);

echo "<pre>";

// echo json_encode($data);

var_dump($data);
Enter fullscreen mode Exit fullscreen mode

Demo repl.it


Thank for reading :)

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay