<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: jQuery Ajax Contact Form with PHP	</title>
	<atom:link href="https://tutorialdeep.com/create-forms/jquery-ajax-contact-form-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>https://tutorialdeep.com/create-forms/jquery-ajax-contact-form-with-php/</link>
	<description>Helping developers and blogger since 2017</description>
	<lastBuildDate>Mon, 06 Jan 2025 11:11:06 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Roshan Parihar		</title>
		<link>https://tutorialdeep.com/create-forms/jquery-ajax-contact-form-with-php/#comment-57073</link>

		<dc:creator><![CDATA[Roshan Parihar]]></dc:creator>
		<pubDate>Mon, 06 Jan 2025 11:11:06 +0000</pubDate>
		<guid isPermaLink="false">https://tutorialdeep.com/?post_type=create-forms&#038;p=47393#comment-57073</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://tutorialdeep.com/create-forms/jquery-ajax-contact-form-with-php/#comment-57050&quot;&gt;Mailer&lt;/a&gt;.

Please make error reporting on with the below codes:

&lt;pre&gt;
error_reporting(-1);
ini_set(&#039;display_errors&#039;, &#039;On&#039;);
set_error_handler(&quot;var_dump&quot;);
&lt;/pre&gt;

After that, check the errors and try to resolve them. Also, check your server error logs related to sending emails.]]></description>
			<content:encoded><![CDATA[<p>Please make error reporting on with the below codes:</p>
<p></p><!-- Urvanov Syntax Highlighter v2.9.1 -->

		<div id="urvanov-syntax-highlighter-6a643a15a9198934467495" class="urvanov-syntax-highlighter-syntax crayon-theme-coy urvanov-syntax-highlighter-font-monaco urvanov-syntax-highlighter-os-pc print-yes notranslate" data-settings=" minimize scroll-mouseover" style=" margin-top: 12px; margin-bottom: 12px; font-size: 16px !important; line-height: 23px !important;">
		
			<div class="crayon-toolbar" data-settings=" show" style="font-size: 16px !important;height: 24px !important; line-height: 24px !important;"><span class="crayon-title"></span>
			<div class="crayon-tools" style="font-size: 16px !important;height: 24px !important; line-height: 24px !important;"><div class="crayon-button urvanov-syntax-highlighter-plain-button" title="Toggle Plain Code"><div class="urvanov-syntax-highlighter-button-icon"></div></div><div class="crayon-button urvanov-syntax-highlighter-expand-button" title="Expand Code"><div class="urvanov-syntax-highlighter-button-icon"></div></div><div class="crayon-button urvanov-syntax-highlighter-copy-button" title="Copy"><div class="urvanov-syntax-highlighter-button-icon"></div></div><div class="crayon-button urvanov-syntax-highlighter-popup-button" title="Open Code In New Window"><div class="urvanov-syntax-highlighter-button-icon"></div></div></div></div>
			<div class="crayon-info" style="min-height: 22.4px !important; line-height: 22.4px !important;"></div>
			<div class="urvanov-syntax-highlighter-plain-wrap"><textarea wrap="soft" class="urvanov-syntax-highlighter-plain print-no" data-settings="dblclick" readonly style="-moz-tab-size:4; -o-tab-size:4; -webkit-tab-size:4; tab-size:4; font-size: 16px !important; line-height: 23px !important;">
error_reporting(-1);
ini_set('display_errors', 'On');
set_error_handler("var_dump");</textarea></div>
			<div class="urvanov-syntax-highlighter-main" style=" max-height: 500px;">
				<table class="crayon-table">
					<tr class="urvanov-syntax-highlighter-row">
				<td class="crayon-nums " data-settings="hide">
					<div class="urvanov-syntax-highlighter-nums-content" style="font-size: 16px !important; line-height: 23px !important;"><div class="crayon-num" data-line="urvanov-syntax-highlighter-6a643a15a9198934467495-1">1</div><div class="crayon-num crayon-striped-num" data-line="urvanov-syntax-highlighter-6a643a15a9198934467495-2">2</div><div class="crayon-num" data-line="urvanov-syntax-highlighter-6a643a15a9198934467495-3">3</div></div>
				</td>
						<td class="urvanov-syntax-highlighter-code"><div class="crayon-pre" style="font-size: 16px !important; line-height: 23px !important; -moz-tab-size:4; -o-tab-size:4; -webkit-tab-size:4; tab-size:4;"><div class="crayon-line" id="urvanov-syntax-highlighter-6a643a15a9198934467495-1"><span class="crayon-e">error_reporting</span><span class="crayon-sy">(</span><span class="crayon-o">-</span><span class="crayon-cn">1</span><span class="crayon-sy">)</span><span class="crayon-sy">;</span></div><div class="crayon-line crayon-striped-line" id="urvanov-syntax-highlighter-6a643a15a9198934467495-2"><span class="crayon-e">ini_set</span><span class="crayon-sy">(</span><span class="crayon-s">'display_errors'</span><span class="crayon-sy">,</span><span class="crayon-h"> </span><span class="crayon-s">'On'</span><span class="crayon-sy">)</span><span class="crayon-sy">;</span></div><div class="crayon-line" id="urvanov-syntax-highlighter-6a643a15a9198934467495-3"><span class="crayon-e">set_error_handler</span><span class="crayon-sy">(</span><span class="crayon-s">"var_dump"</span><span class="crayon-sy">)</span><span class="crayon-sy">;</span></div></div></td>
					</tr>
				</table>
			</div>
		</div>
<!-- [Format Time: 0.0008 seconds] -->
<p></p>
<p>After that, check the errors and try to resolve them. Also, check your server error logs related to sending emails.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mailer		</title>
		<link>https://tutorialdeep.com/create-forms/jquery-ajax-contact-form-with-php/#comment-57050</link>

		<dc:creator><![CDATA[Mailer]]></dc:creator>
		<pubDate>Sun, 05 Jan 2025 15:49:48 +0000</pubDate>
		<guid isPermaLink="false">https://tutorialdeep.com/?post_type=create-forms&#038;p=47393#comment-57050</guid>

					<description><![CDATA[This is strange but it gives an error - Message could not be sent.]]></description>
			<content:encoded><![CDATA[<p>This is strange but it gives an error &#8211; Message could not be sent.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
