<?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>Mukesh Chapagain&#039;s Blog &#187; login</title>
	<atom:link href="http://blog.chapagain.com.np/tag/login/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.chapagain.com.np</link>
	<description>PHP Magento jQuery SQL Wordpress Joomla Programming &#38; Tutorial</description>
	<lastBuildDate>Tue, 07 Feb 2012 00:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Magento: Redirect Customer to Login page if not logged in</title>
		<link>http://blog.chapagain.com.np/magento-redirect-customer-to-login-page-if-not-logged-in/</link>
		<comments>http://blog.chapagain.com.np/magento-redirect-customer-to-login-page-if-not-logged-in/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 02:40:25 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[login]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=1380</guid>
		<description><![CDATA[If you are developing a module which needs to give access to its content only to logged in user then the preDispatch function will be very useful. This dispatches event before action. Just write the following function in your module&#8217;s controller and customer log in is checked before each of your controller action. Hope this [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/magento-set-unset-session/' rel='bookmark' title='Permanent Link: Magento: Get Set Unset Session'>Magento: Get Set Unset Session</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-get-admin-user-id-name-username-email-etc/' rel='bookmark' title='Permanent Link: Magento: How to get admin user id, name, username, email, etc?'>Magento: How to get admin user id, name, username, email, etc?</a></li>
<li><a href='http://blog.chapagain.com.np/magento-block-controller-model-helper-override/' rel='bookmark' title='Permanent Link: Magento: Block Controller Model Helper Override'>Magento: Block Controller Model Helper Override</a></li>
<li><a href='http://blog.chapagain.com.np/magento-solution-to-error-404-not-found-in-admin-login-page/' rel='bookmark' title='Permanent Link: Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page'>Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page</a></li>
<li><a href='http://blog.chapagain.com.np/magento-admin-login-problem/' rel='bookmark' title='Permanent Link: Magento Admin login problem'>Magento Admin login problem</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you are developing a module which needs to give access to its content only to logged in user then the <strong>preDispatch</strong> function will be very useful. This dispatches event before action.</p>
<p>Just write the following function in your module&#8217;s controller and customer log in is checked before each of your controller action.</p>
<p><span id="more-1380"></span></p>
<pre class="brush: php; title: ; notranslate">
/**
 * Checking if user is logged in or not
 * If not logged in then redirect to customer login
 */
public function preDispatch()
{
	parent::preDispatch();

	if (!Mage::getSingleton('customer/session')-&gt;authenticate($this)) {
		$this-&gt;setFlag('', 'no-dispatch', true);
	}
}
</pre>
<p>Hope this helps. Thanks.</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=1380&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/magento-set-unset-session/' rel='bookmark' title='Permanent Link: Magento: Get Set Unset Session'>Magento: Get Set Unset Session</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-get-admin-user-id-name-username-email-etc/' rel='bookmark' title='Permanent Link: Magento: How to get admin user id, name, username, email, etc?'>Magento: How to get admin user id, name, username, email, etc?</a></li>
<li><a href='http://blog.chapagain.com.np/magento-block-controller-model-helper-override/' rel='bookmark' title='Permanent Link: Magento: Block Controller Model Helper Override'>Magento: Block Controller Model Helper Override</a></li>
<li><a href='http://blog.chapagain.com.np/magento-solution-to-error-404-not-found-in-admin-login-page/' rel='bookmark' title='Permanent Link: Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page'>Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page</a></li>
<li><a href='http://blog.chapagain.com.np/magento-admin-login-problem/' rel='bookmark' title='Permanent Link: Magento Admin login problem'>Magento Admin login problem</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/magento-redirect-customer-to-login-page-if-not-logged-in/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress MU: Admin login problem</title>
		<link>http://blog.chapagain.com.np/wordpress-mu-admin-login-problem/</link>
		<comments>http://blog.chapagain.com.np/wordpress-mu-admin-login-problem/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 20:31:31 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[wordpress-mu]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=750</guid>
		<description><![CDATA[Scenario: - I have installed WordPress MU in localhost (local computer). - I am using Windows XP Operating System. - I am using WAMP Server. Problem: When installing WordPress MU, I was getting the following error:- Warning! Installing to http://localhost/ is not supported. Please use http://localhost.localdomain/ instead. I was able to get rid of this [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/magento-admin-login-problem/' rel='bookmark' title='Permanent Link: Magento Admin login problem'>Magento Admin login problem</a></li>
<li><a href='http://blog.chapagain.com.np/left-or-right-align-your-image-adsense-code-or-other-advertisement-in-wordpress/' rel='bookmark' title='Permanent Link: Left or Right Align your image, adsense code or other advertisement in wordpress'>Left or Right Align your image, adsense code or other advertisement in wordpress</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-archive-link-not-working/' rel='bookmark' title='Permanent Link: WordPress: Archive link not working'>WordPress: Archive link not working</a></li>
<li><a href='http://blog.chapagain.com.np/twitter-facebook-wordpress-getting-together/' rel='bookmark' title='Permanent Link: Twitter, Facebook, WordPress getting together'>Twitter, Facebook, WordPress getting together</a></li>
<li><a href='http://blog.chapagain.com.np/magento-solution-to-error-404-not-found-in-admin-login-page/' rel='bookmark' title='Permanent Link: Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page'>Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Scenario:</strong></p>
<p>- I have installed WordPress MU in localhost (local computer).<br />
- I am using Windows XP Operating System.<br />
- I am using WAMP Server.</p>
<p><strong>Problem:</strong></p>
<p><span id="more-750"></span></p>
<p>When installing WordPress MU, I was getting the following error:-</p>
<blockquote><p>Warning! Installing to http://localhost/ is not supported. Please use http://localhost.localdomain/ instead.
</p></blockquote>
<p>I was able to get rid of this warning message by commenting the following line (<em>present at around Line 8 to 10</em>) in <strong>index-install.php</strong> file present inside the wordpress-mu folder:-</p>
<pre class="brush: php; title: ; notranslate">
if( $_SERVER[ 'HTTP_HOST' ] == 'localhost' ) {
	die( &quot;&lt;h2&gt;Warning!&lt;/h2&gt;&lt;p&gt;Installing to http://localhost/ is not supported. Please use &lt;a href='http://localhost.localdomain/'&gt;http://localhost.localdomain/&lt;/a&gt; instead.&lt;/p&gt;&quot; );
}
</pre>
<p>By doing this, I was able to install wordpress MU completely in localhost.</p>
<blockquote><p>But, now I get a strange error. When I try to login to admin panel, I always get redirected back to the login page. I cannot access the dashboard.</p></blockquote>
<p><strong>Solution:</strong></p>
<p>- Go to <strong>C:\WINDOWS\system32\drivers\etc</strong><br />
- Open the file named <strong>hosts </strong>in notepad<br />
- At the end of the file, write the following:-<br />
  <strong>127.0.0.1    localhost.localdomain</strong></p>
<p>- Reinstall WordPress MU using localhost.localdomain instead of localhost.</p>
<p>Suppose you have wordpress MU files in a directory named <strong>wordpress-mu</strong>. Then, you should type the following URL in the browser:-</p>
<p><strong>http://localhost.localdomain/wordpress-mu/</strong></p>
<p>Hope this helps and thanks for reading.</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=750&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/magento-admin-login-problem/' rel='bookmark' title='Permanent Link: Magento Admin login problem'>Magento Admin login problem</a></li>
<li><a href='http://blog.chapagain.com.np/left-or-right-align-your-image-adsense-code-or-other-advertisement-in-wordpress/' rel='bookmark' title='Permanent Link: Left or Right Align your image, adsense code or other advertisement in wordpress'>Left or Right Align your image, adsense code or other advertisement in wordpress</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-archive-link-not-working/' rel='bookmark' title='Permanent Link: WordPress: Archive link not working'>WordPress: Archive link not working</a></li>
<li><a href='http://blog.chapagain.com.np/twitter-facebook-wordpress-getting-together/' rel='bookmark' title='Permanent Link: Twitter, Facebook, WordPress getting together'>Twitter, Facebook, WordPress getting together</a></li>
<li><a href='http://blog.chapagain.com.np/magento-solution-to-error-404-not-found-in-admin-login-page/' rel='bookmark' title='Permanent Link: Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page'>Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/wordpress-mu-admin-login-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magento Admin login problem</title>
		<link>http://blog.chapagain.com.np/magento-admin-login-problem/</link>
		<comments>http://blog.chapagain.com.np/magento-admin-login-problem/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 14:35:55 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[login]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=1415</guid>
		<description><![CDATA[Problem: I had a new installation of magento. But I was unable to login as an administrator. I went to the admin login page, entered correct username and password but was redirected to the same login page. I could not enter the dashboard page. Error message is displayed when I enter wrong username or password. [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/wordpress-mu-admin-login-problem/' rel='bookmark' title='Permanent Link: WordPress MU: Admin login problem'>WordPress MU: Admin login problem</a></li>
<li><a href='http://blog.chapagain.com.np/magento-solution-to-error-404-not-found-in-admin-login-page/' rel='bookmark' title='Permanent Link: Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page'>Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page</a></li>
<li><a href='http://blog.chapagain.com.np/magento-disable-admin-notification-popup/' rel='bookmark' title='Permanent Link: Magento: Disable Admin Notification Popup'>Magento: Disable Admin Notification Popup</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-disable-remove-secret-key-from-admin-url/' rel='bookmark' title='Permanent Link: Magento: How to disable / remove Secret Key from Admin URL?'>Magento: How to disable / remove Secret Key from Admin URL?</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-get-admin-user-id-name-username-email-etc/' rel='bookmark' title='Permanent Link: Magento: How to get admin user id, name, username, email, etc?'>Magento: How to get admin user id, name, username, email, etc?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>I had a new installation of magento. But I was unable to login as an administrator. I went </p>
<p>to the admin login page, entered correct username and password but was redirected to the </p>
<p><span id="more-1415"></span></p>
<p>same login page. I could not enter the dashboard page. Error message is displayed when I </p>
<p>enter wrong username or password. But nothing is displayed and I am redirected to the same </p>
<p>login page when I insert correct username and password.</p>
<p><strong>Solution:</strong></p>
<p>I googled and found these solutions:-</p>
<p>1) Use 127.0.0.1 instead of localhost in your url, i.e. using </p>
<p>http://127.0.0.1/magento/index.php/admin instead of<br />
http://localhost/magento/index.php/admin . But this didn’t solve my problem.</p>
<p>2) Since I am using Windows XP, I was suggested to open “host” file from<br />
C:\WINDOWS\system32\drivers\etc and have 127.0.0.1 point to something like magento.localhost </p>
<p>or even 127.0.0.1 point to http://www.localhost.com . But this also didn’t work either.</p>
<p>3) This solution finally helped me out of this problem. The solution was to modify the core </p>
<p>Magento code. Open </p>
<p><strong>app/code/core/Mage/Core/Model/Session/Abstract/Varien.php</strong>. Comment out the </p>
<p>lines 80 to 83. The line number may vary according to the Magento version. But these lines </p>
<p>are present somewhere near line 80. You have to comment the comma (,) in line: $this-</p>
<p>&gt;getCookie()-&gt;getPath()//,</p>
<pre class="brush: php; title: ; notranslate">
// set session cookie params
session_set_cookie_params(
$this-&gt;getCookie()-&gt;getLifetime(),
$this-&gt;getCookie()-&gt;getPath()//,
//$this-&gt;getCookie()-&gt;getDomain(),
//$this-&gt;getCookie()-&gt;isSecure(),
//$this-&gt;getCookie()-&gt;getHttponly()
);
</pre>
<p>Well, I am out of this problem. Hope, this solution you also help you.</p>
<p><strong><span style="color: #ff0000;">Update (For Magento 1.4.*)</span></strong></p>
<p>In Magento 1.4, you have to comment code from line 86 to 98 in </p>
<p><strong>app/code/core/Mage/Core/Model/Session/Abstract/Varien.php</strong>. Like this:-</p>
<pre class="brush: php; title: ; notranslate">
/*  if (!$cookieParams['httponly']) {
	unset($cookieParams['httponly']);
	if (!$cookieParams['secure']) {
		unset($cookieParams['secure']);
		if (!$cookieParams['domain']) {
			unset($cookieParams['domain']);
		}
	}
} 

if (isset($cookieParams['domain'])) {
	$cookieParams['domain'] = $cookie-&gt;getDomain();
} */
</pre>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=1415&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/wordpress-mu-admin-login-problem/' rel='bookmark' title='Permanent Link: WordPress MU: Admin login problem'>WordPress MU: Admin login problem</a></li>
<li><a href='http://blog.chapagain.com.np/magento-solution-to-error-404-not-found-in-admin-login-page/' rel='bookmark' title='Permanent Link: Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page'>Magento: Solution to &#8220;Error: 404 Not Found&#8221; in Admin Login Page</a></li>
<li><a href='http://blog.chapagain.com.np/magento-disable-admin-notification-popup/' rel='bookmark' title='Permanent Link: Magento: Disable Admin Notification Popup'>Magento: Disable Admin Notification Popup</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-disable-remove-secret-key-from-admin-url/' rel='bookmark' title='Permanent Link: Magento: How to disable / remove Secret Key from Admin URL?'>Magento: How to disable / remove Secret Key from Admin URL?</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-get-admin-user-id-name-username-email-etc/' rel='bookmark' title='Permanent Link: Magento: How to get admin user id, name, username, email, etc?'>Magento: How to get admin user id, name, username, email, etc?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/magento-admin-login-problem/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Very simple add, edit, delete, display in PHP</title>
		<link>http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/</link>
		<comments>http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 08:03:11 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[register]]></category>
		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/2008/03/05/very-simple-add-edit-delete-display-in-php/</guid>
		<description><![CDATA[Before I had posted an article to add, edit, delete, and display contents. I had also included sessions there. There was the facility to login and register users too. But i got feedback that it was a bit complex for novice users of PHP (users who have just started PHPing). It was a kind of [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/' rel='bookmark' title='Permanent Link: Add, edit, delete, login, register in PHP :: A simple and complete tutorial'>Add, edit, delete, login, register in PHP :: A simple and complete tutorial</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-delete-system-attribute/' rel='bookmark' title='Permanent Link: Magento: How to delete System Attribute?'>Magento: How to delete System Attribute?</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-select-insert-update-and-delete-data/' rel='bookmark' title='Permanent Link: Magento: How to select, insert, update, and delete data?'>Magento: How to select, insert, update, and delete data?</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-delete-remove-extension-from-magentoconnect/' rel='bookmark' title='Permanent Link: Magento: How to delete / remove extension from MagentoConnect?'>Magento: How to delete / remove extension from MagentoConnect?</a></li>
<li><a href='http://blog.chapagain.com.np/session-handling-in-php/' rel='bookmark' title='Permanent Link: Session Handling in PHP'>Session Handling in PHP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Before I had posted an article to <a href="http://blog.chapagain.com.np/2007/12/08/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/">add, edit, delete, and display contents</a>. I had also included sessions there. There was the facility to login and register users too.</p>
<p>But i got feedback that it was a bit complex for novice users of PHP (users who have just started PHPing). It was a kind of full-fledge system with PHP, MySQL and session.</p>
<p><span id="more-44"></span></p>
<p>So in this article, I have simplified the same functionality of the above tutorial. I have not used session in this case. If you want tutorial about session, login, and register then you can refer to my previous article (the link which is provided above).</p>
<p><strong>Files included in this tutorial/code:</strong></p>
<p>users.sql = This contains sql queries to make MySQL database and table</p>
<p>config.php = contains the database connection code (this file is included in all the php pages with the include() function)</p>
<p>index.php = contains the display part (displaying data from database)</p>
<p>add.html = contains form to add data</p>
<p>add.php = contains php code to add data</p>
<p>edit.php = contains php code to edit data</p>
<p>delete.php = contains php code to delete data</p>
<p><strong>Download full source code: <a href="http://chapagain.googlecode.com/files/crud-simple.zip" title="Create, read, update, delete in php and mysql">Create, read, update, delete in php and mysql</a></strong></p>
<p>Cheers,</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=44&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/' rel='bookmark' title='Permanent Link: Add, edit, delete, login, register in PHP :: A simple and complete tutorial'>Add, edit, delete, login, register in PHP :: A simple and complete tutorial</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-delete-system-attribute/' rel='bookmark' title='Permanent Link: Magento: How to delete System Attribute?'>Magento: How to delete System Attribute?</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-select-insert-update-and-delete-data/' rel='bookmark' title='Permanent Link: Magento: How to select, insert, update, and delete data?'>Magento: How to select, insert, update, and delete data?</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-delete-remove-extension-from-magentoconnect/' rel='bookmark' title='Permanent Link: Magento: How to delete / remove extension from MagentoConnect?'>Magento: How to delete / remove extension from MagentoConnect?</a></li>
<li><a href='http://blog.chapagain.com.np/session-handling-in-php/' rel='bookmark' title='Permanent Link: Session Handling in PHP'>Session Handling in PHP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Add, edit, delete, login, register in PHP :: A simple and complete tutorial</title>
		<link>http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/</link>
		<comments>http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 06:44:19 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[register]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/2007/12/08/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/</guid>
		<description><![CDATA[Hello everyone! here is a simple and complete tutorial to add, edit, delete, login, and register in PHP with MySQL database. The description is present in the code.. in comments :D I hope those comments are sufficient to describe the code. The database part is in the sql file named &#8216;database.sql&#8217;. I have attached the [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/' rel='bookmark' title='Permanent Link: Very simple add, edit, delete, display in PHP'>Very simple add, edit, delete, display in PHP</a></li>
<li><a href='http://blog.chapagain.com.np/php-how-to-get-stock-quote-data-from-yahoo-finance-complete-code-and-tutorial/' rel='bookmark' title='Permanent Link: PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)'>PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)</a></li>
<li><a href='http://blog.chapagain.com.np/session-handling-in-php/' rel='bookmark' title='Permanent Link: Session Handling in PHP'>Session Handling in PHP</a></li>
<li><a href='http://blog.chapagain.com.np/creating-dynamic-table-in-php/' rel='bookmark' title='Permanent Link: Creating dynamic table in PHP : Easy and Simple tutorial'>Creating dynamic table in PHP : Easy and Simple tutorial</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-delete-system-attribute/' rel='bookmark' title='Permanent Link: Magento: How to delete System Attribute?'>Magento: How to delete System Attribute?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Hello everyone! here is a simple and complete tutorial to add, edit, delete, login, and register in PHP with MySQL database.</p>
<p>The description is present in the code.. in comments :D I hope those comments are sufficient to describe the code. The database part is in the sql file named &#8216;database.sql&#8217;.</p>
<p><span id="more-31"></span></p>
<p>I have attached the code with this post. Download it and enjoy PHPing&#8230;</p>
<p><strong>Download full source code: <a href="http://chapagain.googlecode.com/files/crud-complete.zip" title="PHP code for add,edit,delete,login, and register">PHP code for add,edit,delete,login, and register</a></strong></p>
<p>Cheers,</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=31&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/' rel='bookmark' title='Permanent Link: Very simple add, edit, delete, display in PHP'>Very simple add, edit, delete, display in PHP</a></li>
<li><a href='http://blog.chapagain.com.np/php-how-to-get-stock-quote-data-from-yahoo-finance-complete-code-and-tutorial/' rel='bookmark' title='Permanent Link: PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)'>PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)</a></li>
<li><a href='http://blog.chapagain.com.np/session-handling-in-php/' rel='bookmark' title='Permanent Link: Session Handling in PHP'>Session Handling in PHP</a></li>
<li><a href='http://blog.chapagain.com.np/creating-dynamic-table-in-php/' rel='bookmark' title='Permanent Link: Creating dynamic table in PHP : Easy and Simple tutorial'>Creating dynamic table in PHP : Easy and Simple tutorial</a></li>
<li><a href='http://blog.chapagain.com.np/magento-how-to-delete-system-attribute/' rel='bookmark' title='Permanent Link: Magento: How to delete System Attribute?'>Magento: How to delete System Attribute?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
