<?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>Django Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/category/django/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/category/django/</link>
	<description>Code Solution</description>
	<lastBuildDate>Mon, 01 Nov 2021 11:09:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>Django Archives - Codeplaners</title>
	<link>https://codeplaners.com/category/django/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Select Option Redirect URL On Submit Using Javascript</title>
		<link>https://codeplaners.com/select-option-redirect-url-on-submit-using-javascript/</link>
					<comments>https://codeplaners.com/select-option-redirect-url-on-submit-using-javascript/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 01 Nov 2021 11:07:08 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Laravel]]></category>
		<category><![CDATA[Laravel 8]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[redirect url]]></category>
		<category><![CDATA[select option redirect url]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1353</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you select option redirect url on submit example. This article will give you simple example of select option redirect url on submit example. you will select option redirect url on submit example. In this article, we will implement a select option redirect url on submit example. So let’s &#8230; <a href="https://codeplaners.com/select-option-redirect-url-on-submit-using-javascript/" class="more-link">Continue reading<span class="screen-reader-text"> "Select Option Redirect URL On Submit Using Javascript"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/select-option-redirect-url-on-submit-using-javascript/">Select Option Redirect URL On Submit Using Javascript</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you select option redirect url on submit example. This article will give you simple example of select option redirect url on submit example. you will select option redirect url on submit example. In this article, we will implement a select option redirect url on submit example. </p>
<p>So let’s follow few step to create example of select option redirect url on submit example.</p>
<h3 class="step_code">Example</h3>
<pre class="brush: php; title: ; notranslate">
&lt;html&gt;
   &lt;head&gt;
      &lt;title&gt;Select Option Redirect URL On Submit Example&lt;/title&gt;
      &lt;style&gt;
         input, select
         {
         width: 280px;
         margin: 19px;
         height: 45 px;
         padding: 10px;
         }
      &lt;/style&gt;
   &lt;/head&gt;
   &lt;body&gt;
      &lt;form  id=&quot;comment-form1&quot; name=&quot;contact-form1&quot;  onsubmit=&quot;return mysubmit();&quot;&gt;
         &lt;select  id=&quot;option&quot; class=&quot;chosen&quot; &gt;
            &lt;option selected disabled&gt;Select Bank&lt;/option&gt;
            &lt;option value=&quot;https://codeplaners.com/&quot;&gt;Sanwebcorner Demo&lt;/option&gt;
            &lt;option value=&quot;https://mbrwebsolution.com/&quot; &gt;Sanwebcorner Main Page&lt;/option&gt;
            &lt;option value=&quot;https://mbrwebsolution.com/contact-us&quot; &gt;Single page&lt;/option&gt;
         &lt;/select&gt;
         &lt;br/&gt;
         &lt;input name=&quot;submit&quot; type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;&lt;br&gt;
      &lt;/form&gt;
      &lt;script&gt;
         document.getElementById('comment-form1').addEventListener('submit',(e)=&gt;{
          e.preventDefault();
          window.location = (document.getElementById('option').value);
         })
      &lt;/script&gt;
      &lt;/div&gt;
      &lt;/div&gt;
      &lt;/section&gt;
   &lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/select-option-redirect-url-on-submit-using-javascript/">Select Option Redirect URL On Submit Using Javascript</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/select-option-redirect-url-on-submit-using-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install Django on Windows</title>
		<link>https://codeplaners.com/how-to-install-django-on-windows/</link>
					<comments>https://codeplaners.com/how-to-install-django-on-windows/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 23 May 2021 05:27:45 +0000</pubDate>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[install django]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=822</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you how to install django on windows. This article will give you simple example of how to install django on windows. you will learn how to install django on windows. Django is one of the most popular web frameworks in Python. It is secure. It is free and &#8230; <a href="https://codeplaners.com/how-to-install-django-on-windows/" class="more-link">Continue reading<span class="screen-reader-text"> "How to Install Django on Windows"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-install-django-on-windows/">How to Install Django on Windows</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you how to install django on windows. This article will give you simple example of how to install django on windows. you will learn how to install django on windows. </p>
<p>Django is one of the most popular web frameworks in Python. It is secure. It is free and open-source.</p>
<p>So let&#8217;s follow few step to create example of how to install Django on Windows.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" src="https://codeplaners.com/wp-content/uploads/2021/05/djangoview.png" alt="How to Install Django" ></p>
<h3>Step 1:- Install Python</h3>
<p>Before installing Django, install Python. You can check out this guide I written, <a href="https://codeplaners.com/how-to-install-python-on-windows/" target="_blank" style="color:red;" rel="noopener noreferrer">how to install python on windows</a></p>
<h3>Step 2:- Open Command Prompt</h3>
<p>Windows logo key and R(Win+R) and type cmd and then click ok.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" src="https://codeplaners.com/wp-content/uploads/2021/05/cmd.png" alt="How to Install Django" ></p>
<h3>Step 3:- Check Python Installation</h3>
<pre class="brush: python; title: ; notranslate">
python --version
</pre>
<pre class="brush: python; title: ; notranslate">
C:\Users\dell&gt;python --version
Python 3.9.5
</pre>
<h3>Step 4:- Create Project Directory</h3>
<p>let’s create a project directory. We will name it <strong>django_project</strong> since this article is just a example. If you want to give some other name, then you can give </p>
<p>create the directory:-</p>
<pre class="brush: python; title: ; notranslate">
mkdir django_project
</pre>
<pre class="brush: python; title: ; notranslate">
cd django_project
</pre>
<h3>Step 5:- Create Virtual Environment</h3>
<p>You can learn more about virtualenv <a href="https://realpython.com/python-virtual-environments-a-primer/" target="_blank" style="color:red;" rel="noopener noreferrer">here.</a></p>
<p>create virtual environment, type <strong>python -m venv venv</strong> type and wait</p>
<pre class="brush: python; title: ; notranslate">
python -m venv venv
</pre>
<h3>Step 6:- Activate Virtual EnvironmentPermalink</h3>
<p>Run the following command</p>
<pre class="brush: python; title: ; notranslate">
venv\Scripts\activate
</pre>
<p>virtualenv is activated, you will see (venv) at the beginning of the prompt.</p>
<pre class="brush: python; title: ; notranslate">
(venv) PS C:\Users\Stanley\django_project&gt;
</pre>
<h3>Step 7:- Install Django</h3>
<p>run the following command to start the installation</p>
<pre class="brush: python; title: ; notranslate">
pip install django
</pre>
<h3>Step 8:- Start a New Project</h3>
<p>django-admin startproject to create our Django project structure called “testsite”.</p>
<p>Run the following command:</p>
<pre class="brush: python; title: ; notranslate">
django-admin startproject testsite
</pre>
<pre class="brush: python; title: ; notranslate">
cd testsite
</pre>
<h3>Step 9:- Run the Server</h3>
<p>run the development server using the <strong>manage.py runserver</strong>.</p>
<pre class="brush: python; title: ; notranslate">
python manage.py runserver
</pre>
<pre class="brush: python; title: ; notranslate">
http://127.0.0.1:8000/
</pre>
<p><img decoding="async" style="border: 3px solid #ff5722;" src="https://codeplaners.com/wp-content/uploads/2021/05/djangoview.png" alt="How to Install Django" ></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-install-django-on-windows/">How to Install Django on Windows</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-install-django-on-windows/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
