<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>working with forms in php - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/working-with-forms-in-php/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/working-with-forms-in-php/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Tue, 02 Aug 2022 08:51:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>working with forms in php - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/working-with-forms-in-php/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What are the methods to submit form in PHP ?</title>
		<link>https://www.wikitechy.com/interview-questions/php/what-are-the-methods-to-submit-form-in-php/</link>
					<comments>https://www.wikitechy.com/interview-questions/php/what-are-the-methods-to-submit-form-in-php/#respond</comments>
		
		<dc:creator><![CDATA[webmaster]]></dc:creator>
		<pubDate>Tue, 02 Aug 2022 07:24:43 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[form submit in php mysql]]></category>
		<category><![CDATA[get and post method in php]]></category>
		<category><![CDATA[how to access submitted form data in php]]></category>
		<category><![CDATA[how to check form sumbission in php]]></category>
		<category><![CDATA[how to submit a form using php]]></category>
		<category><![CDATA[how to submit php form]]></category>
		<category><![CDATA[method get form]]></category>
		<category><![CDATA[php form handling]]></category>
		<category><![CDATA[php form processing with an example]]></category>
		<category><![CDATA[php form submit get method]]></category>
		<category><![CDATA[php form submit to database]]></category>
		<category><![CDATA[what are the methods to submit form in php]]></category>
		<category><![CDATA[working with forms in php]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=4539</guid>

					<description><![CDATA[In PHP we can create and use forms in which we need to use PHP superglobals $_GET and $_POST to get form data. If the form request get or post we need to use $_GET, for post request $_POST to retrieve data from get request. In this get request is the default form request in [&#8230;]]]></description>
										<content:encoded><![CDATA[<ul>
<li style="text-align: justify;">In PHP we can create and use forms in which we need to use PHP superglobals <a href="https://www.wikitechy.com/php/php-get">$_GET</a> and <a href="https://www.wikitechy.com/php/php-post">$_POST</a> to get form data.</li>
<li style="text-align: justify;">If the form request get or post we need to use $_GET, for post request $_POST to retrieve data from get request.</li>
<li style="text-align: justify;">In this get request is the default form request in which the data is passed through get request is visible on the URL browser so it is not secured and we can send limited amount of data through get request.</li>
<li style="text-align: justify;">Post request is widely used to submit form that have large amount of data such as image upload, file upload, registration form, login form, etc.</li>
<li style="text-align: justify;">In this the data passed through post request is not visible on the URL browser so it is secured and we can send large amount of data through post request.</li>
</ul>
<h2 id="sample-code">Sample Code</h2>
<div class="code-embed-wrapper"> <div class="code-embed-infos"> </div> <pre class="language-php code-embed-pre line-numbers"  data-start="1" data-line-offset="0"><code class="language-php code-embed-code">&lt;html&gt;<br/>&lt;body&gt;<br/><br/>&lt;form action=&quot;welcome_get.php&quot; method=&quot;get&quot;&gt;<br/>Name: &lt;input type=&quot;text&quot; name=&quot;name&quot;&gt;&lt;br&gt;<br/>E-mail: &lt;input type=&quot;text&quot; name=&quot;email&quot;&gt;&lt;br&gt;<br/>&lt;input type=&quot;submit&quot;&gt;<br/>&lt;/form&gt;<br/><br/>&lt;/body&gt;<br/>&lt;/html&gt;</code></pre> </div>
<h2 id="output">Output</h2>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-4540" src="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-function.png" alt="" width="1289" height="482" srcset="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-function.png 1289w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-function-300x112.png 300w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-function-1024x383.png 1024w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-function-768x287.png 768w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-function-390x146.png 390w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-function-820x307.png 820w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/get-function-1180x441.png 1180w" sizes="(max-width: 1289px) 100vw, 1289px" /></p>
<p><img decoding="async" class="alignnone size-full wp-image-4541" src="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/methods-to-submit-form-in-php.png" alt="" width="1288" height="555" srcset="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/methods-to-submit-form-in-php.png 1288w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/methods-to-submit-form-in-php-300x129.png 300w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/methods-to-submit-form-in-php-1024x441.png 1024w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/methods-to-submit-form-in-php-768x331.png 768w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/methods-to-submit-form-in-php-390x168.png 390w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/methods-to-submit-form-in-php-820x353.png 820w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/08/methods-to-submit-form-in-php-1180x508.png 1180w" sizes="(max-width: 1288px) 100vw, 1288px" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/php/what-are-the-methods-to-submit-form-in-php/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
