<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Php Web Developer India Delhi Saurabh Goyal</title>
	<atom:link href="http://webexpert.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webexpert.wordpress.com</link>
	<description>Web Application Site Development , Web Development , Web Developer – Freelancer , Php Developer ,Gurgoan, Delhi, India, Php Expert , PHP-Nuke , OSCommerce ,Payment Gateway Integration , Joomla , Mambo , CakePhp , Smarty , CMS , CRM , MySql , Informix , Linux &#38; Window Control Pannel , Javascript , Ajax , FFmpeg , Mplayer , Mencoder , Lame , Video Based Site</description>
	<lastBuildDate>Thu, 16 Apr 2009 10:04:35 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='webexpert.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/cd3609df6a16a547da2d01569e29753c?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Php Web Developer India Delhi Saurabh Goyal</title>
		<link>http://webexpert.wordpress.com</link>
	</image>
			<item>
		<title>MySQL Daily Backup Script</title>
		<link>http://webexpert.wordpress.com/2009/04/16/mysql-daily-backup-script/</link>
		<comments>http://webexpert.wordpress.com/2009/04/16/mysql-daily-backup-script/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 10:04:35 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=107</guid>
		<description><![CDATA[Create a script file :-  /usr/local/sbin/mysqlbackup.sh
Add below code :-
#!/bin/sh
# Current date
datum=`/bin/date +%Y%m%d-%H`
/usr/bin/mysqldump &#8211;user=root &#8211;password=RootPassword  \
      Database_name &#124; gzip -9 &#62; /home/sqlbackup/${filename}-${datum}.sql.gz
for file in &#8220;$( /usr/bin/find /home/sqlbackup -type f -mtime +5 )&#8221;
do
  /bin/rm -f $file
done
exit 0
crontab -e
Add Below Line :-
0 0 * * * /usr/local/sbin/mysqlbackup.sh &#38;&#62; /dev/null ( For Backup Daily)
Posted in Uncategorized    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=107&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2009/04/16/mysql-daily-backup-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
		<item>
		<title>JSP/Java Code to Download csv file</title>
		<link>http://webexpert.wordpress.com/2009/04/02/jspjava-code-to-download-csv-file/</link>
		<comments>http://webexpert.wordpress.com/2009/04/02/jspjava-code-to-download-csv-file/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 04:53:23 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=105</guid>
		<description><![CDATA[&#60;!&#8211;JSP Code of Download File
By Saurabh Goyal &#60;sggoyal@gmail.com&#62; &#8211;&#62;
&#60;%@ page contentType=&#8221;text/html; charset=iso-8859-1&#8243; language=&#8221;java&#8221; import=&#8221;java.sql.*,javax.servlet.*,java.io.*&#8221; errorPage=&#8221;" %&#62;
 
&#60;%
try { 
 
String ROOT_PATH;
// Path of WebApplication Directy
ROOT_PATH = getServletContext().getRealPath(&#8220;/&#8221;);
FileInputStream in = new FileInputStream(ROOT_PATH+&#8221;syssum.csv&#8221;);// Here syssum.csv is source file to download
response.setContentType(&#8220;application/csv&#8221;);//Sets the MIME header 
response.setHeader(&#8220;Content-Disposition&#8221;, &#8220;attachment; filename=syssum.csv&#8221;);// Here syssum.csv is name of file to download
 
int i; 
while ((i=in.read()) != -1) { 
out.write(i); 
} 
in.close(); 
out.close(); 
 
}
catch(Exception e) 
{ 
System.out.println(&#8220;&#8230;error while [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=105&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2009/04/02/jspjava-code-to-download-csv-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
		<item>
		<title>Configure CakePHP CTP Files in Dreamweaver</title>
		<link>http://webexpert.wordpress.com/2009/03/02/configure-cakephp-ctp-files-in-dreamweaver/</link>
		<comments>http://webexpert.wordpress.com/2009/03/02/configure-cakephp-ctp-files-in-dreamweaver/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 08:58:28 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=103</guid>
		<description><![CDATA[For Configure/Opening CakePHP CTP Files in Dreamweaver 3 files that you need to edit:-
C:\Program Files\(Adobe or Macromedia)\(Adobe )Dreamweaver(version like 8 or cs3)\configuration
Open up “Extensions.txt” and on the first line at the very end add THTML and CTP separated by commas, so the line should read:


,MASTER,THTML,CTP:All Documents  


,MASTER,THTML,CTP:All Documents
Similarly add these two extensions to the “:PHP Files” line.


PHP,PHP3,PHP4,PHP5,TPL,THTML,CTP:PHP Files  


PHP,PHP3,PHP4,PHP5,TPL,THTML,CTP:PHP Files
Next [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=103&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2009/03/02/configure-cakephp-ctp-files-in-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
		<item>
		<title>Upload File using php</title>
		<link>http://webexpert.wordpress.com/2008/09/05/upload-file-using-php/</link>
		<comments>http://webexpert.wordpress.com/2008/09/05/upload-file-using-php/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 05:44:45 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[PHP Basics]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=95</guid>
		<description><![CDATA[&#60;?php
if(isset($_POST[‘submit’])) {
   // To Save file into server
    $upload_dir = &#8216;uploadfile/&#8217;;
   
    // Check direcory is exist or not
    if(@!opendir($upload_dir)) {
     mkdir($upload_dir , 0755);
    }
   
    if (is_uploaded_file($_FILES['userfile']['tmp_name'])) {
     // Start Code for Report
     $filename = time().&#8217;_&#8217;.$_FILES['userfile']['name'];
     $uploaded_file = $upload_dir.$filename;
     copy($_FILES['userfile']["tmp_name"],$uploaded_file);
    }
    else
    {
      echo “file not upload successful”;
    }
}

?&#62;
&#60;form action=&#8221;" method=&#8221;post&#8221; enctype=&#8221;multipart/form-data&#8221; &#62;
&#60;input type=&#8221;file&#8221; name=&#8217;userfile&#8217; /&#62;
&#60;input [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=95&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2008/09/05/upload-file-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
		<item>
		<title>Query to show not match records</title>
		<link>http://webexpert.wordpress.com/2008/07/30/query-to-show-not-match-records/</link>
		<comments>http://webexpert.wordpress.com/2008/07/30/query-to-show-not-match-records/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 07:46:38 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/2008/07/30/query-to-show-not-match-records/</guid>
		<description><![CDATA[Query to show not match records
Two Table :-
Transaction Table 1(trans1):-
TDate1       trans_no
7/21/2008  451
7/21/2008  452
7/21/2008  453
7/21/2008  454
7/21/2008  455
7/21/2008  456
7/21/2008  457
Transaction Table 2(trans2):-
TDate2       trans_no
7/21/2008  451
7/21/2008  456
7/21/2008  561
7/21/2008  871
7/21/2008  981
7/21/2008  453
Query:-
Show Record Where trans1 trans_no is not match with trans2 trans_no but date are same
SELECT t1.TDate1,
t1.trans_no
from trans1 as t1
left join trans2 as t2
on t1.trans_no = t2.trans_no
where t2.trans_no is null
and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=93&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2008/07/30/query-to-show-not-match-records/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
		<item>
		<title>Newline (\n) not working in Notepad</title>
		<link>http://webexpert.wordpress.com/2008/07/17/newline-n-not-working-in-notepad/</link>
		<comments>http://webexpert.wordpress.com/2008/07/17/newline-n-not-working-in-notepad/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 09:53:12 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=90</guid>
		<description><![CDATA[Newline (\n) not working in Notepad?
Field row /value not show on next line in notepad?
Ans :-
Just add &#8220;\r\n&#8221; instend of &#8220;\n&#8221; only
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=90&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2008/07/17/newline-n-not-working-in-notepad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
		<item>
		<title>Common mistakes that can weaken your PHP-MySQL application</title>
		<link>http://webexpert.wordpress.com/2008/07/17/common-mistakes-that-can-weaken-your-php-mysql-application/</link>
		<comments>http://webexpert.wordpress.com/2008/07/17/common-mistakes-that-can-weaken-your-php-mysql-application/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 07:06:36 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=85</guid>
		<description><![CDATA[PHP-MySQL is great server side duo. But when designing an application, utmost care needs to be observed. With time, most web programmers learn about common things such as cannot send headers, mysql_query() is not a valid resource, unexpected T_IF VARIABLE, etc. However, some mistakes are less known and less publicized which leads to repetition of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=85&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2008/07/17/common-mistakes-that-can-weaken-your-php-mysql-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
		<item>
		<title>MAC Address using PHP</title>
		<link>http://webexpert.wordpress.com/2008/07/16/mac-address-using-php/</link>
		<comments>http://webexpert.wordpress.com/2008/07/16/mac-address-using-php/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 10:06:22 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[PHP Basics]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[MAC Address]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=79</guid>
		<description><![CDATA[&#60;?php
/*******************************************************************************
*                     *******************************                                                 *
*                     http://webexpert.wordpress.com                                           *
*                     ******************************                                                  *
*                                                                                                                    *
*                     Title: MAC Adress using Php                                                  *
*                     Author: Saurabh Goyal                                                            *
*                     Email id: sggoyal@gmail.com                                                 *
*                     Thank&#8217;s : http://nazmulb.wordpress.com/                            *
*******************************************************************************/
ob_start(); // Turn on output buffering
system(&#8216;ipconfig /all&#8217;); //Execute external program to display output
$mycom=ob_get_contents(); // Capture the output into a variable
ob_clean(); // Clean [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=79&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2008/07/16/mac-address-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Design Patterns</title>
		<link>http://webexpert.wordpress.com/2008/07/16/php-design-patterns/</link>
		<comments>http://webexpert.wordpress.com/2008/07/16/php-design-patterns/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 07:33:46 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[Php Introduction]]></category>
		<category><![CDATA[php interview]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=66</guid>
		<description><![CDATA[
Introduction to Design Patterns Using PHP
Design patterns are basically a general method that can be used in solving a variety of different problems. Read how Jason uses PHP to demonstrate how design patterns work.What are Design Patterns
Design Patterns are simply defined solutions to common problems.  Design patterns are not created by someone who sits in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=66&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2008/07/16/php-design-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>

		<media:content url="http://webexpert.files.wordpress.com/2008/07/intr2despatusphpjl_1.jpg?w=300" medium="image">
			<media:title type="html">UML diagram</media:title>
		</media:content>

		<media:content url="http://webexpert.files.wordpress.com/2008/07/factory1.gif?w=229" medium="image">
			<media:title type="html">The factory class and its related IUser interface and user class</media:title>
		</media:content>

		<media:content url="http://webexpert.files.wordpress.com/2008/07/factory2.gif?w=95" medium="image">
			<media:title type="html">The IUser interface and the user class with factory methods</media:title>
		</media:content>

		<media:content url="http://webexpert.files.wordpress.com/2008/07/singleton.gif?w=165" medium="image">
			<media:title type="html">The database connection singleton</media:title>
		</media:content>

		<media:content url="http://webexpert.files.wordpress.com/2008/07/observer.gif?w=300" medium="image">
			<media:title type="html">The observable user list and the user list event logger</media:title>
		</media:content>

		<media:content url="http://webexpert.files.wordpress.com/2008/07/chain.gif?w=300" medium="image">
			<media:title type="html">The command chain and its related commands</media:title>
		</media:content>

		<media:content url="http://webexpert.files.wordpress.com/2008/07/strategy.gif?w=300" medium="image">
			<media:title type="html">The user list and the strategies for selecting users</media:title>
		</media:content>
	</item>
		<item>
		<title>How execute store procedure with C#.net</title>
		<link>http://webexpert.wordpress.com/2008/07/16/how-execute-store-procedure-with-cnet/</link>
		<comments>http://webexpert.wordpress.com/2008/07/16/how-execute-store-procedure-with-cnet/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 06:57:05 +0000</pubDate>
		<dc:creator>sggoyal</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://webexpert.wordpress.com/?p=64</guid>
		<description><![CDATA[Create  store procedure in sql query analyser
CREATE PROCEDURE  sp_chkadmin
@login_id varchar(50),
@password varchar(50)
as begin
select * from where login_id =  @login_id and password =@password
end
GO
protected void  butlogin_ServerClick1(object sender, EventArgs e)
{ 
string username =  txtlogin.Value.ToString().Replace(&#8220;&#8216;&#8221;, &#8220;&#8221;&#8221;);
string password =  txtpassword.Value.ToString().Replace(&#8220;&#8216;&#8221;, &#8220;&#8221;&#8221;);
int isUserExist=0;
isUserExist = IsUserExist(username,  password);
if (isUserExist ==  1)
{
Session["admin"] = username;
Response.Redirect(&#8220;next.aspx&#8221;);
}
else
{
lblhead.Text = &#8220;Please Enter [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webexpert.wordpress.com&blog=3376189&post=64&subd=webexpert&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://webexpert.wordpress.com/2008/07/16/how-execute-store-procedure-with-cnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/316b8dab3005941fb74cb2ead3b5b277?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sggoyal</media:title>
		</media:content>
	</item>
	</channel>
</rss>