answersLogoWhite

0

How do you create an application form using PHP?

Updated: 8/17/2019
User Avatar

Wiki User

11y ago

Best Answer

CREATE TABLE `test`.`users` (

`id` INT NOT NULL auto_increment ,

`name` VARCHAR( 20 ) NOT NULL ,

`password` VARCHAR( 20 ) NOT NULL ,

`email` VARCHAR( 20 ) NOT NULL ,

PRIMARY KEY ( `id` )

)

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you create an application form using PHP?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you create a webmail application with PHP?

Creating a webmail application in PHP involves using the related POP3 or IMAP libraries to connect to the mail system and cookies/sessions to save authentication information.


What type of application can create a form in PHP?

Any program capable of editing a text file can be used to create a form in PHP. For those that have a strong understanding of PHP, a simple text editor, such as Microsoft Windows Notepad is sufficient for creating forms in PHP. For less experienced PHP developers, they should consider using a program such as SciTE or Eclipse in order to give them syntax highlighting and code correction features (features vary by application). Regardless, you can expect to have to write the majority of the form handling routine by hand, unless you use a PHP library or script that you find and download from the Internet. Some developers have already written some generic form-handling scripts-- if a PHP developer can use their functionality, it can save countless hours of manual coding, and instead just "link" into the library (using the "include" or "require" statements), and call the appropriate functions.


How do you make a blog using PHP and MySQL?

You can create blog in php. In fact, many blogs on the internet created using php. There are many readymade blogs which you can install on your own server. Or, if you wish, you can create your own blog application. Simply, blog is a dynamic website (users can add, delete, update content) and PHP was designed for creation of dynamic websites.


How do you make a login using PHP?

Create an HTML form with METHOD="post" and ACTION="login2.php". In login2.php check if the entered username and password are correct. You can get the username with $_POST['name_of_username_input']. The same goes for the password.


Why do we use Php?

PHP is an Open Source Scripting Language. We can create Web Pages and Web Applications using PHP.


Is there any widget that can take details and email them?

I dont know about widget but using php you can create a form that will then email it to you. I would suggest you try a tutorial on http://www.tutorialized.com under php.


How do you create a web mail script using PHP?

You can use phpMailer() Or, you can use mail() PHP function to send emails via PHP script.


How do you develop a API centric application in PHP?

Put all the sql queries required by the application to get relevant data in a single file or folder and you have an API centric php module. The application prefarably a mobile app or software application processes the queries and obtains necessary information to display at the front-end. Long story short, do not build the entire application using PHP. Just use PHP for backend


What can php programng do?

With Php Programming You can Create website , Web Portals, ERP Systems , CMS , E-Commerece Application , Web Services for mobile applications and multi language interaction.


Why is PHP used?

PHP is used to create dynamic websites, this is a step up from HTML as it allows you to do much more than creating static websites. Using a language such as PHP also gives you access to using databases with your website such as MySQL.


How can you create a website without using a host like Shutterfly?

Maybe try mySQL or PHP?


What are the methods of retrieving data from HTML form?

An old way is to use an email in the form's action attribute, but this requires the user to have a mail account/application set up on his or her computer, which isn't very handy. The other way is to use php to either insert/update the data in a database or to return the information in another web page, or both. This can be done by specifying your receiving php file in the form's action tag, for example: <form action="receive.php" method="POST">Insert form elements here</form> However, using php requires that your webserver supports php.