<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<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/"
	>

<channel>
	<title>ITBeginner</title>
	<link>http://www.itbeginner.com</link>
	<description>Begining For Beginner</description>
	<pubDate>Thu, 17 Jul 2008 13:30:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Read And Write Image PHP</title>
		<link>http://www.itbeginner.com/archives/read-and-write-image-php.html</link>
		<comments>http://www.itbeginner.com/archives/read-and-write-image-php.html#comments</comments>
		<pubDate>Thu, 17 Jul 2008 13:30:42 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/read-and-write-image-php.html</guid>
		<description><![CDATA[function save_image($url,$filename){
$ch = curl_init ($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
$rawdata=curl_exec ($ch);
curl_close ($ch);
$fp = fopen($filename,&#8217;w');
fwrite($fp, $rawdata);
fclose($fp);
}
When you run this function and get error  call undefined function curl_init  you must enable curl php extension  in php.ini file.
Bookmark to:
]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/read-and-write-image-php.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to restore database SQLServer 2005</title>
		<link>http://www.itbeginner.com/archives/how-to-restore-database-sqlserver-2005.html</link>
		<comments>http://www.itbeginner.com/archives/how-to-restore-database-sqlserver-2005.html#comments</comments>
		<pubDate>Tue, 08 Jul 2008 02:44:15 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/how-to-restore-database-sqlserver-2005.html</guid>
		<description><![CDATA[Yesterday I attempt to backup and restore my database I use sql server 2005 version developer . I want to copy database &#8220;DataTest&#8221; to new database name &#8220;MyDB&#8221; I try two ways  first I backup &#8220;DataTest&#8221; then restore to &#8220;MyDB&#8221; but when restore sql server have error . Second restore database &#8220;DataTest&#8221; to &#8220;MyDb&#8221; [...]]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/how-to-restore-database-sqlserver-2005.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Cannot modify header information</title>
		<link>http://www.itbeginner.com/archives/cannot-modify-header-information.html</link>
		<comments>http://www.itbeginner.com/archives/cannot-modify-header-information.html#comments</comments>
		<pubDate>Sun, 06 Jul 2008 19:17:32 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/cannot-modify-header-information.html</guid>
		<description><![CDATA[I&#8217;m have php error when  I user header(&#8221;Location:index.php&#8221;);  I&#8217;m google to take amswer
Originally Posted by kenmcd
The &#8220;headers already sent&#8221; error is usually caused by having white space before or after the opening and closing PHP tags (&#60;?php . . . ?&#62;).
Have you recently edited any files?
&#160;
Is good.
Source : http://forum.mamboserver.com/showpost.php?p=265568&#38;postcount=10
Bookmark to:
]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/cannot-modify-header-information.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Comment multi line T-SQL Server</title>
		<link>http://www.itbeginner.com/archives/comment-multi-line-t-sql-server.html</link>
		<comments>http://www.itbeginner.com/archives/comment-multi-line-t-sql-server.html#comments</comments>
		<pubDate>Thu, 29 May 2008 04:41:00 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/comment-multi-line-t-sql-server.html</guid>
		<description><![CDATA[ 				CREATE TABLE Students
/* A table named Students
with Primary Key as Id
will be created */
(
Id INT PRIMARY KEY,
Name VARCHAR(50) NOT NULL,
Address VARCHAR(40) NOT NULL,
/*Only the phone number accepts null value */
Phone INT
) 
Bookmark to:
]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/comment-multi-line-t-sql-server.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Stored Procedure varchar (8000) limitation.</title>
		<link>http://www.itbeginner.com/archives/stored-procedure-varchar-8000-limitation.html</link>
		<comments>http://www.itbeginner.com/archives/stored-procedure-varchar-8000-limitation.html#comments</comments>
		<pubDate>Thu, 29 May 2008 04:05:02 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/stored-procedure-varchar-8000-limitation.html</guid>
		<description><![CDATA[
SELECT @qry = CAST(@qry1 AS VARCHAR(MAX)) + CAST(@qry2 AS VARCHAR(MAX))

&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
&#8211; You would expect the length of @qry to be 10,000 at this point
&#8211; But that is not true. The length will be 8000.
&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
 
SELECT 
LEN(@qry) AS sqlLength,
LEN(@qry1) AS sql1Length ,
LEN(@qry2) AS sql2Length 

/*
sqlLength            sql1Length  sql2Length
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8211;
10000                5000        5000
*/
 
 For SQL Server 2005 [...]]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/stored-procedure-varchar-8000-limitation.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Return table from function</title>
		<link>http://www.itbeginner.com/archives/return-table-from-function.html</link>
		<comments>http://www.itbeginner.com/archives/return-table-from-function.html#comments</comments>
		<pubDate>Wed, 28 May 2008 06:36:32 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/return-table-from-function.html</guid>
		<description><![CDATA[Build the function for return table to the calling statement.

CREATE FUNCTION SearchModule(
)
RETURNS @AppendText TABLE (
modTest varchar(500)
) As
BEGIN
INSERT INto @AppendText (modTest)
SELECT m.HEADER FROM MODULE_INFORMATION m
WHERE m.PROJECT_ID = 1
RETURN
END

Bookmark to:
]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/return-table-from-function.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Call to undefined function mysql_connect</title>
		<link>http://www.itbeginner.com/archives/call-to-undefined-function-mysql_connect.html</link>
		<comments>http://www.itbeginner.com/archives/call-to-undefined-function-mysql_connect.html#comments</comments>
		<pubDate>Tue, 27 May 2008 08:44:59 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/call-to-undefined-function-mysql_connect.html</guid>
		<description><![CDATA[To day I&#8217;m install php5 , apache and mysql, I dowload &#8220;php-5.2.6-Win32.zip&#8221;  installer packet and apache &#8220;apache_2.2.8-win32-x86-openssl-0.9.8g.msi&#8221; and then I&#8217;m download mysql server
1. Install apache  apache_2.2.8-win32-x86-openssl-0.9.8g.msi
2. Extract php-5.2.6-Win32.zip to c:\php\php5 ( I create new dir php5 contain php5 only).
3. Rename php.ini.dst to php.ini in c:\php\php5 then cut to c:\windows
4. Copy libmysql.dll in c:\php\php5 to c:windows\system32
5. [...]]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/call-to-undefined-function-mysql_connect.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hello jquery</title>
		<link>http://www.itbeginner.com/archives/hello-jquery.html</link>
		<comments>http://www.itbeginner.com/archives/hello-jquery.html#comments</comments>
		<pubDate>Fri, 23 May 2008 09:13:01 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[jqury]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/hello-jquery.html</guid>
		<description><![CDATA[ &#60;html&#62;
&#60;head&#62;
&#60;script type=&#8221;text/javascript&#8221; src=&#8221;jquery.js&#8221;&#62;&#60;/script&#62;
&#60;script type=&#8221;text/javascript&#8221;&#62;
$(document).ready(function(){
$(&#8221;a&#8221;).click(function(){
alert(&#8221;Hello World!&#8221;);
});
});
&#60;/script&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;a href=&#8221;"&#62;Click Me&#60;/a&#62;
&#60;/body&#62;
&#60;/html&#62;
This page just loads the jquery.js library this example I copy jquery.js to same directory.
Bookmark to:
]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/hello-jquery.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to enable mod_rewrite in apache server</title>
		<link>http://www.itbeginner.com/archives/how-to-enable-mode_rewrite-in-apache-server.html</link>
		<comments>http://www.itbeginner.com/archives/how-to-enable-mode_rewrite-in-apache-server.html#comments</comments>
		<pubDate>Fri, 23 May 2008 04:51:13 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/how-to-enable-mode_rewrite-in-apache-server.html</guid>
		<description><![CDATA[I install appserv web server and I want to enable mod_rewrite on my local serve  I open httpd.conf with text editor then find &#8220;LoadModule rewrite_module &#8221; and uncomment save then restart apache.
Bookmark to:
]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/how-to-enable-mode_rewrite-in-apache-server.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to strip html tag</title>
		<link>http://www.itbeginner.com/archives/how-to-strip-html-tag.html</link>
		<comments>http://www.itbeginner.com/archives/how-to-strip-html-tag.html#comments</comments>
		<pubDate>Thu, 22 May 2008 14:41:27 +0000</pubDate>
		<dc:creator>awat</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.itbeginner.com/archives/how-to-strip-html-tag.html</guid>
		<description><![CDATA[To day I&#8217;m write php code for get content from ezinearticle.com and post it to my blogger via gmail. after I use file_get_contents I had a html code of content then I must strip html tag out and cut out some body I try to search for google and found at php.net can help me.
&#60;?php
$text [...]]]></description>
		<wfw:commentRss>http://www.itbeginner.com/archives/how-to-strip-html-tag.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
