Please help me with how to use client inputs in a form as part of arguments in a CGI script following a button return. I want a client to specify a name which i can then use in perl script to create a folder for that client.
brounemmanuel 0 Newbie Poster
Recommended Answers
Jump to PostA simple example... (note: more validation should be done, this is just an example...)
// a basic html form
<form action='script.pl' method='post'> NAME: <input type='text' name='name' size'8' maxlength='8' /> <br /> <input type='submit' name='button' value='Folder Name' /> </form>
All 3 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.