<?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>Tech Insight ! &#187; PHP</title>
	<atom:link href="http://techinsight.dhanashree.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://techinsight.dhanashree.com</link>
	<description>Technical blog on ASP.Net, PHP, Web Development, Web hosting , Database Programming</description>
	<lastBuildDate>Fri, 12 Aug 2011 07:26:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP $_SERVER and $HTTP_SERVER_VARS</title>
		<link>http://techinsight.dhanashree.com/php-_server-and-http_server_vars/</link>
		<comments>http://techinsight.dhanashree.com/php-_server-and-http_server_vars/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 06:28:04 +0000</pubDate>
		<dc:creator>jatin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techinsight.dhanashree.com/php-_server-and-http_server_vars/</guid>
		<description><![CDATA[$_SERVER is an array containing information such as headers, paths, and script locations. The entries in this array are created by the web server. There is no guarantee that every web server will provide any of these.
 $HTTP_SERVER_VARS contains the same initial information, but is not a superglobal. (Note that $HTTP_SERVER_VARS and $_SERVER are different [...]]]></description>
			<content:encoded><![CDATA[<p><em>$_SERVER is an array containing information such as headers, paths, and script locations. The entries in this array are created by the web server. There is no guarantee that every web server will provide any of these.</em></p>
<p><em> $HTTP_SERVER_VARS contains the same initial information, but is not a superglobal. (Note that $HTTP_SERVER_VARS and $_SERVER are different variables and that PHP handles them as such) </em></p>
<p><strong><em>$_SERVER ['PHP_SELF']</em><br />
</strong></p>
<p><em>The filename of the currently executing script, relative to the document root.<br />
For instance, $_SERVER ['PHP_SELF'] in a script at the address http://example.com/test.php/foo.bar would be /test.php/foo.bar. </em></p>
<p><strong><em>$_SERVER ['argv']</em><br />
</strong></p>
<p><em>Array of arguments passed to the script. When the script is run on the command line, this gives C-style access to the command line parameters. When called via the GET method, this will contain the query string. </em></p>
<p><em><strong>$_SERVER ['argc']<br />
</strong>Contains the number of command line parameters passed to the script (if run on the command line). </em></p>
<p><strong><em>$_SERVER ['SERVER_ADDR']</em><br />
</strong></p>
<p><em>The IP address of the server under which the current script is executing. </em></p>
<p><strong><em>$_SERVER ['SERVER_NAME']</em><br />
</strong></p>
<p><em>The name of the server host under which the current script is executing. If the script is running on a virtual host, this will be the value defined for that virtual host. </em></p>
<p><strong><em>$_SERVER ['SERVER_SOFTWARE']</em><br />
</strong></p>
<p><em>Server identification string, given in the headers when responding to requests. </em></p>
<p><strong><em>$_SERVER ['SERVER_PROTOCOL']</em><br />
</strong></p>
<p><em>Name and revision of the information protocol via which the page was requested;<br />
i.e. &#8216;HTTP/1.0&#8242;; </em></p>
<p><strong><em>$_SERVER ['REQUEST_METHOD']</em><br />
</strong></p>
<p><em>Which request method was used to access the page?<br />
i.e. &#8216;GET&#8217;, &#8216;HEAD&#8217;, &#8216;POST&#8217;, &#8216;PUT&#8217;.<br />
Note: PHP script is terminated after sending headers (it means after producing any output without output buffering) if the request method was HEAD. </em></p>
<p><strong><em>$_SERVER ['REQUEST_TIME']</em><br />
</strong></p>
<p><em>The timestamp of the start of the request.</em></p>
<p><strong><em>$_SERVER ['QUERY_STRING']</em><br />
</strong></p>
<p><em>The query string, if any, via which the page was accessed. </em></p>
<p><strong><em>$_SERVER ['DOCUMENT_ROOT']</em><br />
</strong></p>
<p><em>The document root directory under which the current script is executing, as defined in the server&#8217;s configuration file. </em></p>
<p><strong><em>$_SERVER ['HTTP_ACCEPT']</em><br />
</strong></p>
<p><em>Contents of the Accept: header from the current request, if there is one. </em></p>
<p><strong><em>$_SERVER ['HTTP_ACCEPT_CHARSET']</em><br />
</strong></p>
<p><em>Contents of the Accept-Charset: header from the current request, if there is one.<br />
Example: &#8216;iso-8859-1,*, utf-8&#8242;. </em></p>
<p><strong><em>$_SERVER ['HTTP_ACCEPT_ENCODING']</em><br />
</strong></p>
<p><em>Contents of the Accept-Encoding: header from the current request, if there is one.<br />
Example: &#8216;gzip&#8217;. </em></p>
<p><strong><em>$_SERVER ['HTTP_ACCEPT_LANGUAGE']</em><br />
</strong></p>
<p><em>Contents of the Accept-Language: header from the current request, if there is one.<br />
Example: &#8216;en&#8217;. </em></p>
<p><strong><em>$_SERVER ['HTTP_CONNECTION']</em><br />
</strong></p>
<p><em>Contents of the Connection: header from the current request, if there is one.<br />
Example: &#8216;Keep-Alive&#8217;. </em></p>
<p><strong><em>$_SERVER ['HTTP_HOST']</em><br />
</strong></p>
<p><em>Contents of the Host: header from the current request, if there is one. </em></p>
<p><strong><em><br />
$_SERVER ['HTTP_REFERER']</em></strong></p>
<p><em>The address of the page (if any) which referred the user agent to the current page. This is set by the user agent. Not all user agents will set this, and some provide the ability to modify HTTP_REFERER as a feature. In short, it cannot really be trusted. </em></p>
<p><strong><em>$_SERVER ['HTTP_USER_AGENT']</em><br />
</strong></p>
<p><em>Contents of the User-Agent: header from the current request, if there is one. This is a string denoting the user agent being which is accessing the page. A typical example is: Mozilla/4.5 [en] (X11; U; Linux 2.2.9 i586). Among other things, you can use this value with get_browser () to tailor your page&#8217;s output to the capabilities of the user agent. </em></p>
<p><strong><em>$_SERVER ['HTTPS']</em><br />
</strong></p>
<p><em>Set to a non-empty value if the script was queried through the HTTPS protocol. </em></p>
<p><em>Note: Note that when using ISAPI with IIS, the value will be off if the request was not made through the HTTPS protocol. </em></p>
<p><strong><em>$_SERVER ['REMOTE_ADDR']</em><br />
</strong></p>
<p><em>The IP address from which the user is viewing the current page. </em></p>
<p><strong><em>$_SERVER ['REMOTE_HOST']</em><br />
</strong></p>
<p><em>The Host name from which the user is viewing the current page. The reverse dns lookup is based off the REMOTE_ADDR of the user. </em></p>
<p><em>Note: Your web server must be configured to create this variable. For example in Apache you&#8217;ll need HostnameLookups On inside httpd.conf for it to exist. See also gethostbyaddr (). </em></p>
<p><strong><em>$_SERVER ['REMOTE_PORT']</em><br />
</strong></p>
<p><em>The port being used on the user&#8217;s machine to communicate with the web server. </em></p>
<p><strong><em>$_SERVER ['SCRIPT_FILENAME']</em><br />
</strong></p>
<p><em>The absolute pathname of the currently executing script. </em></p>
<p><strong><em>$_SERVER ['SERVER_ADMIN']</em><br />
</strong></p>
<p><em>The value given to the SERVER_ADMIN (for Apache) directive in the web server configuration file. If the script is running on a virtual host, this will be the value defined for that virtual host. </em></p>
<p><strong><em>$_SERVER ['SERVER_PORT']</em><br />
</strong></p>
<p><em>The port on the server machine being used by the web server for communication.<br />
For default setups, this will be &#8216;80&#8242;. Using SSL, for instance, will change this to whatever your defined secure HTTP port is. </em></p>
<p><strong><em>$_SERVER ['SERVER_SIGNATURE']</em><br />
</strong></p>
<p><em>String containing the server version and virtual host name which are added to server-generated pages, if enabled. </em></p>
<p><strong><em>$_SERVER ['PATH_TRANSLATED']</em><br />
</strong></p>
<p><em>File system- (not document root-) based path to the current script, after the server has done any virtual-to-real mapping. </em></p>
<p><strong><em>$_SERVER ['SCRIPT_NAME']</em><br />
</strong></p>
<p><em>Contains the current script&#8217;s path. This is useful for pages which need to point to themselves. The __FILE__ constant contains the full path and filename of the current (i.e. included) file. </em></p>
<p><strong><em>$_SERVER ['REQUEST_URI']</em><br />
</strong></p>
<p><em>The URI which was given in order to access this page.<br />
For instance, &#8216;/index.html&#8217;. </em></p>
<p><strong><em>$_SERVER ['PHP_AUTH_DIGEST']</em><br />
</strong></p>
<p><em>When running under Apache as module doing Digest HTTP authentication this variable is set to the &#8216;Authorization&#8217; header sent by the client (which you should then use to make the appropriate validation). </em></p>
<p><strong><em>$_SERVER ['PHP_AUTH_USER']</em><br />
</strong></p>
<p><em>This variable is set to the username provided by the user. </em></p>
<p><strong><em>$_SERVER ['PHP_AUTH_PW']</em><br />
</strong></p>
<p><em>This variable is set to the password provided by the user. </em></p>
<p><strong><em>$_SERVER ['AUTH_TYPE']</em><br />
</strong></p>
<p><em>This variable is set to the authentication type. </em></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="color: red;" lang="EN-IN"><span style="font-size: 11pt;"><br />
<span style="font-family: Calibri;">NOTE<span style="mso-spacerun: yes;"> </span>: Also visit <a href="http://www.dhanashree.com">www.dhanashree.com</a></span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;"><br />
If you are in need of any </span><a href="http://dhanashree.com/web-development-services/asp-php-web-development" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">Web Development</span></a><span style="font-size: 11pt; font-family: Calibri;"> feel free to <span style="text-decoration: underline;"><a href="http://dhanashree.com/contact-web-designing-company" target="_blank">Inquire us</a></span> .<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a></span>. Expertise in <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">Asp.net Development</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">Php Development</a></span>,<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><br />
<a href="http://dhanashree.com/web-development-services/website-designing" target="_blank">Website designing</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/open-source-wordpress-joomla-oscommerce-customisation" target="_blank">Open Source customisation</a></span>. <span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a> </span>can be our <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/offshore-website-designing-company" target="_blank">offshore development company</a></span> / </span><a href="http://dhanashree.com/web-designing-outsource-advantages" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">outsourcing</span></a><span style="font-size: 11pt; font-family: Calibri;"> <span style="text-decoration: underline;"><a href="http://dhanashree.com/dhanashree-web-development-profile" target="_blank">web development company</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">hire dedicated web programmers</a></span>.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;"><br />
Above information is for knowledge sharing<span style="mso-spacerun: yes;"> </span>if you have problem / issue / suggestion please intimate us with details for proper and prompt action.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techinsight.dhanashree.com/php-_server-and-http_server_vars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call Google Geocoding API from PHP, Google Map Geocoder PHP Class</title>
		<link>http://techinsight.dhanashree.com/call-google-geocoding-api-from-php-google-map-geocoder-php-class/</link>
		<comments>http://techinsight.dhanashree.com/call-google-geocoding-api-from-php-google-map-geocoder-php-class/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 11:35:22 +0000</pubDate>
		<dc:creator>jatin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Geocoding]]></category>

		<guid isPermaLink="false">http://techinsight.dhanashree.com/call-google-geocoding-api-from-php-google-map-geocoder-php-class/</guid>
		<description><![CDATA[Geocoding is the process of finding associated geographic coordinates (often expressed as latitude and longitude) from other geographic data, such as street addresses, or zip codes (postal codes). With geographic coordinates the features can be mapped and entered into Geographic Information Systems, or the coordinates can be embedded into media such as digital photographs via [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Geocoding</strong> is the process of finding associated geographic coordinates (often expressed as <strong>latitude</strong> and <strong>longitude</strong>) from other geographic data, such as street addresses, or zip codes (postal codes). With geographic coordinates the features can be mapped and entered into Geographic Information Systems, or the coordinates can be embedded into media such as digital photographs via <strong>geotagging</strong>.</p>
<p>Below is the <strong>Geocoder PHP class</strong> it will return geographic coordinates   (often expressed as latitude and longitude) from other geographic data, such as street addresses, or zip codes (postal codes), Country, City, State using Google map API.</p>
<p style="text-align: justify;">
<p><strong>PHP INI Setting</strong><br />
First check the setting XML DOM Setting on the <strong>php.ini</strong> files. Enable the xml in <strong>php.ini</strong> extensions<br />
enable</p>
<p>;php_xsl<br />
php_xsl ( for it to work )</p>
<p><strong>Get Google Map API Key</strong><br />
<a href="http://code.google.com/apis/maps/signup.html">http://code.google.com/apis/maps/signup.html</a></p>
<p><span style="font-size: 12pt; text-decoration: underline;"><strong>Geocoder Class</strong></span></p>
<p>class Geocoder{</p>
<p>var $_GoogleMapsKey;</p>
<p style="margin-left: 36pt;">function Geocoder($apiky) // Construct define GOOGLE MAP API key<br />
{<br />
$this-&gt;_GoogleMapsKey=$apiky;<br />
}<br />
function getLatLong($address=&#8221;",$city=&#8221;",$state=&#8221;",$postcode=&#8221;",$country=&#8221;")<br />
{<br />
$query=urlencode($address.&#8221;,&#8221;.$city.&#8221;,&#8221;.$state.&#8221;,&#8221;.$postcode.&#8221;,&#8221;.$country); // Passed Query<br />
$url=&#8221;http://maps.google.com/maps/geo?q=&#8221;.$query.&#8221;&amp;output=xml&amp;key=&#8221;.$this-&gt;_GoogleMapsKey; // URL<br />
return  $this-&gt;getCoordinates($url);<br />
}<br />
function getCoordinates($file) // This class return  Coordinates Values<br />
{</p>
<p style="margin-left: 36pt;">$doc = new DOMDocument();<br />
$doc-&gt;load($file);<br />
$coordinates = $doc-&gt;getElementsByTagName(&#8220;coordinates&#8221;);</p>
<p>foreach( $coordinates as $coordinate)<br />
{</p>
<p style="margin-left: 72pt;">$coordinatesval = $coordinates-&gt;item(0)-&gt;nodeVa$coval=explode(&#8220;,&#8221;,$coordinatesval);<br />
return $coval[0].&#8221;,&#8221;.$coval[1];</p>
<p style="margin-left: 36pt;">}<br />
}</p>
<p>}</p>
<p><span style="font-size: 12pt;"><strong>Define Geocoder Class<br />
</strong></span></p>
<p><strong>Example 1:<br />
</strong><br />
$g=new Geocoder(&#8220;&#8221;);  // add your Google Map API Key<strong><br />
</strong>echo $g-&gt;getLatLong(&#8220;main bazar&#8221;,&#8221;dhrol&#8221;,&#8221;gujarat&#8221;,&#8221;india&#8221;);<strong> </strong></p>
<p><strong> </strong></p>
<p><strong>Example 2:<br />
</strong></p>
<p>$g=new Geocoder(&#8220;&#8221;);  // add your Google Map API Key<strong><br />
</strong>echo $g-&gt;getLatLong(&#8220;address&#8221;,&#8221;city&#8221;,&#8221;postcode&#8221;,&#8221;country&#8221;);<strong><br />
</strong></p>
<p>Now you can view geographic coordinates (latitude and longitude) using Google map Geocoder class.</p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="color: red;" lang="EN-IN"><span style="font-size: 11pt;"><br />
<span style="font-family: Calibri;">NOTE<span style="mso-spacerun: yes;"> </span>: Also visit <a href="http://www.dhanashree.com">www.dhanashree.com</a></span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;"><br />
If you are in need of any </span><a href="http://dhanashree.com/web-development-services/asp-php-web-development" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">Web Development</span></a><span style="font-size: 11pt; font-family: Calibri;"> feel free to <span style="text-decoration: underline;"><a href="http://dhanashree.com/contact-web-designing-company" target="_blank">Inquire us</a></span> .<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a></span>. Expertise in <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">Asp.net Development</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">Php Development</a></span>,<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><br />
<a href="http://dhanashree.com/web-development-services/website-designing" target="_blank">Website designing</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/open-source-wordpress-joomla-oscommerce-customisation" target="_blank">Open Source customisation</a></span>. <span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a> </span>can be our <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/offshore-website-designing-company" target="_blank">offshore development company</a></span> / </span><a href="http://dhanashree.com/web-designing-outsource-advantages" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">outsourcing</span></a><span style="font-size: 11pt; font-family: Calibri;"> <span style="text-decoration: underline;"><a href="http://dhanashree.com/dhanashree-web-development-profile" target="_blank">web development company</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">hire dedicated web programmers</a></span>.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;"><br />
Above information is for knowledge sharing<span style="mso-spacerun: yes;"> </span>if you have problem / issue / suggestion please intimate us with details for proper and prompt action.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techinsight.dhanashree.com/call-google-geocoding-api-from-php-google-map-geocoder-php-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to import mysql dump to database-import mysql dumps</title>
		<link>http://techinsight.dhanashree.com/how-to-import-mysql-dump-to-database-import-mysql-dumps/</link>
		<comments>http://techinsight.dhanashree.com/how-to-import-mysql-dump-to-database-import-mysql-dumps/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 10:06:09 +0000</pubDate>
		<dc:creator>dinctechadmin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techinsight.dhanashree.com/256/</guid>
		<description><![CDATA[If you wanted to import large mysql dump file to database.
See below for how to import mysql dump using only one file.
Step 1: Download dump file. (e.g.  demodb.sql).
Step 2: Change connection, username, password, database variable values.
Step 3: Change dump file name with proper path.
Step 4: Run this page.
Import mysql dump file code.
+++++++++++++++++++++++++++++++++++++++++++++++++++++
&#60;?php
$host =&#8221;Your Host&#8221;; [...]]]></description>
			<content:encoded><![CDATA[<p>If you wanted to import large mysql dump file to database.</p>
<p>See below for how to import mysql dump using only one file.</p>
<p><strong>Step 1:</strong> Download dump file. (e.g.  demodb.sql).<br />
<strong>Step 2:</strong> Change connection, username, password, database variable values.<br />
<strong>Step 3:</strong> Change dump file name with proper path.<br />
<strong>Step 4:</strong> Run this page.</p>
<p>Import mysql dump file code.</p>
<p>+++++++++++++++++++++++++++++++++++++++++++++++++++++</p>
<p>&lt;?php</p>
<p>$host =&#8221;Your Host&#8221;;                   // Change host (e.g localhost)<br />
$dbusername =&#8221;Database username&#8221;;     // Change Database Username<br />
$dbpassword =&#8221;Database password&#8221;;      // Change Database Password<br />
$database =&#8221;Your database&#8221;;        // Change Database<br />
$dumpfile = &#8220;Your Dump file&#8221;;        // Set dump file path (e.g. demodb.sql)<br />
mysql_connect($host,$dbusername,$dbpassword);<br />
mysql_select_db($dumpfile);<br />
$file = fopen($dumpfile, &#8216;r&#8217;);<br />
print &#8216;&lt;pre&gt;&#8217;;<br />
print mysql_error();<br />
$temp = &#8221;;<br />
$count = 0;</p>
<p>while($line = fgets($file)) {<br />
if ((substr($line, 0, 2) != &#8216;&#8211;&#8217;) &amp;&amp; (substr($line, 0, 2) != &#8216;/*&#8217;) &amp;&amp; strlen($line) &gt; 1) {<br />
$last = trim(substr($line, -2, 1));<br />
$temp .= trim(substr($line, 0, -1));<br />
if ($last == &#8216;;&#8217;) {<br />
mysql_query($temp);<br />
$count++;<br />
$temp = &#8221;;<br />
}<br />
}<br />
}</p>
<p>echo mysql_error();<br />
echo &#8220;Total {$count} queries fire(s).\n&#8221;;<br />
echo &#8220;Enjoing this fastest mysql dump importer..\n&#8221;;<br />
echo &#8216;&lt;/pre&gt;&#8217;;</p>
<p>?&gt;</p>
<p>+++++++++++++++++++++++++++++++++++++++++++++++++++++</p>
<p>Enjoying this fastest mysql dump importer.</p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="color: red;" lang="EN-IN"><span style="font-size: 11pt;"><br />
<span style="font-family: Calibri;">NOTE<span style="mso-spacerun: yes;"> </span>: Also visit <a href="http://www.dhanashree.com">www.dhanashree.com</a></span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;"><br />
If you are in need of any </span><a href="http://dhanashree.com/web-development-services/asp-php-web-development" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">Web Development</span></a><span style="font-size: 11pt; font-family: Calibri;"> feel free to <span style="text-decoration: underline;"><a href="http://dhanashree.com/contact-web-designing-company" target="_blank">Inquire us</a></span> .<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a></span>. Expertise in <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">Asp.net Development</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">Php Development</a></span>,<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><br />
<a href="http://dhanashree.com/web-development-services/website-designing" target="_blank">Website designing</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/open-source-wordpress-joomla-oscommerce-customisation" target="_blank">Open Source customisation</a></span>. <span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a> </span>can be our <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/offshore-website-designing-company" target="_blank">offshore development company</a></span> / </span><a href="http://dhanashree.com/web-designing-outsource-advantages" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">outsourcing</span></a><span style="font-size: 11pt; font-family: Calibri;"> <span style="text-decoration: underline;"><a href="http://dhanashree.com/dhanashree-web-development-profile" target="_blank">web development company</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">hire dedicated web programmers</a></span>.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;"><br />
Above information is for knowledge sharing<span style="mso-spacerun: yes;"> </span>if you have problem / issue / suggestion please intimate us with details for proper and prompt action.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techinsight.dhanashree.com/how-to-import-mysql-dump-to-database-import-mysql-dumps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of technology which can be adopted into development</title>
		<link>http://techinsight.dhanashree.com/list-of-technology-which-can-be-adopted-into-development/</link>
		<comments>http://techinsight.dhanashree.com/list-of-technology-which-can-be-adopted-into-development/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 07:51:15 +0000</pubDate>
		<dc:creator>kiran</dc:creator>
				<category><![CDATA[.Net 2.0]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tools & Technology]]></category>
		<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[.net developement]]></category>
		<category><![CDATA[asp.net developement]]></category>
		<category><![CDATA[C#.net]]></category>

		<guid isPermaLink="false">http://dhanashree.com/techblog/?p=77</guid>
		<description><![CDATA[Business Intelligence Application Development
 
Companies are investing millions of dollars in ERP solutions or have invested till date to improve the way they conduct their business. While ERP provides significant benefits organizations are finding that, in order to achieve critical decision making business goals, they often need to supplement it with additional external reporting capabilities [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Business Intelligence <a href="http://www.dhanashree.com/web-development-services/web-software-application-development" target="_blank">Application Development</a></strong></p>
<p><strong> </strong></p>
<p>Companies are investing millions of dollars in ERP solutions or have invested till date to improve the way they conduct their business. While ERP provides significant benefits organizations are finding that, in order to achieve critical decision making business goals, they often need to supplement it with additional external reporting capabilities for it end users. With the wealth of data entered and stored in ERP databases the ability to analyze and interpret the data is significant for management reporting. With Business Intelligence tool, it has greatly alleviated the backlog of report requests and has provided users with decision making information in a timely manner.</p>
<p>Business Intelligence is a method of storing and presenting key enterprise data so that anyone in your company can quickly and easily ask questions of accurate and timely data. Effective BI allows end users to use data to understand why your business got the particular results that it did, to decide on courses of action based on past data, and to accurately forecast future  results.</p>
<p>BI data is displayed in a fashion that is appropriate to each type of user, i.e. analysts will be able to drill into detailed data, executives will see timely summaries, and middle managers will see data presented at the level of detail that they need to make good business decisions. Microsoft’s BI uses cubes, rather than tables, to store information and presents information via reports. The reports can be presented to end users in a variety of formats:Windows applications,<a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">Web Applications</a>, and Microsoft BI client tools, such</p>
<p>as Excel or SQL Reporting Services.</p>
<p>Need for the BI application:</p>
<p>Check out following article where it is explain what is the important of BI application</p>
<p><a href="http://www.cio.com/article/153500/Need_for_Business_Intelligence_Grows_Too_Much_Information_Not_Enough_Insight">http://www.cio.com/article/153500/Need_for_Business_Intelligence_Grows_Too_Much_Information_Not_Enough_Insight</a></p>
<p>Microsoft products involved in BI <a href="http://www.dhanashree.com/web-development-services/web-software-application-development" target="_blank">application development</a>:</p>
<p><strong>SQL Server 2005</strong>: This is the preferred staging and, possibly, source location for BI solutions. Data can actually be retrieved from a variety of data stores (Oracle, DB2, and so on), so a SQL Server installation is not strictly required to build a Microsoft BI solution. However, due to the integration of some key toolsets that are part of nearly all BI solutions—for example, SSIS or SQL Server Integration Services, which is usually used to perform the ETL of source data into the data warehouse—most BI solutions will include at least one SQL Server 2005 installation. Another key component in many BI solutions is SQL Server Reporting Services (SSRS). When working with SQL Server to perform OLAP administrative tasks, you will use the management interface, which is called SQL Server Management Studio (SSMS).</p>
<p><strong>SQL Server Analysis Service</strong>: This is the core server in Microsoft’s BI solution. SSAS provides storage for the data used in cubes for your data warehouse.</p>
<p><strong>SQL Server 2005 Integration Service</strong>: This toolset is a key component in most BI solutions that is used to import, cleanse, and validate data prior to making the data available to the  analysis Services for reporting purposes. It is typical to use data from many disparate sources (relational, flat file, XML, and so on) as source data to a data warehouse. For this reason, a sophisticated toolset, such as SSIS is used to facilitate the complex data loads that are often common to BI solutions. As stated earlier, this functionality is often called ETL (Extract, Transform, and Load) in a BI solution.</p>
<p><strong>SQL Server 2005 Reporting Service</strong>: This is an optional component for your BI solution.</p>
<p><strong>Excel 2003 and 2007: </strong>This is another optional component for your BI solution. Many  companies already own Office 2003, so use of Excel as a BI client is often attractive for its low cost and (relatively) low training curve.</p>
<p><strong> </strong></p>
<p>Apart from Microsoft BI solution, there are number of other solution provider are there in market.</p>
<p>Following are the list of BI solution &amp; tools provider</p>
<p>Cognos: <a href="http://www.cognos.com/products/cognos8businessintelligence/index.html">http://www.cognos.com/products/cognos8businessintelligence/index.html</a></p>
<p>SAP: <a href="http://www.sap.com/solutions/netweaver/components/bi/index.epx">http://www.sap.com/solutions/netweaver/components/bi/index.epx</a></p>
<p>Business Object: <a href="http://www.uk.businessobjects.com/products/platform/enterprise.asp">http://www.uk.businessobjects.com/products/platform/enterprise.asp</a></p>
<p>Oracle: <a href="http://www.oracle.com/solutions/business_intelligence/index.html">http://www.oracle.com/solutions/business_intelligence/index.html</a></p>
<p><strong><span style="text-decoration: underline;"><br />
</span></strong></p>
<p><strong><span style="text-decoration: underline;"> </span></strong></p>
<p><strong><span style="text-decoration: underline;">SharePoint Portal Service/Server</span></strong></p>
<p><strong><span style="text-decoration: underline;"> </span></strong></p>
<p>Microsoft Windows SharePoint Services 3.0 is a versatile technology that organizations and business units of all sizes can use to increase the efficiency of business processes and improve team productivity. With tools for collaboration that help people stay connected across organizational and geographic boundaries, Windows SharePoint Services gives people access to information they need.</p>
<p>Built on Microsoft Windows Server 2003, Windows SharePoint Services also provides a  foundation platform for building <a href="http://www.dhanashree.com/web-development-services/web-software-application-development/business-communication-sytems" target="_blank">Web-based business applications</a> that can flex and scale easily to meet the changing and growing needs of your business. Robust administrative controls for managing storage and Web infrastructure give IT departments a cost-effective way to implement and manage a high-performance collaboration environment. With a familiar, <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">Web-based interface</a> and close integration with everyday tools including the Microsoft Office system, Windows SharePoint Services is easy to use and can be deployed rapidly</p>
<p>Need of SharePoint?</p>
<p>• As companies grow so does the amount of their files. It soon becomes difficult to keep track of the multiplying documents and their locations.  SharePoint overcomes this by allowing you to store and share your files in a central site.</p>
<p>• Sharing work files through email is a cumbersome process.  SharePoint eliminates this by allowing files to be stored in one location, allowing easy access to all team members.</p>
<p>• Business Intelligence has traditionally remained in the hands of a few key decision makers within organizations.  For years, it has been the goal of BI providers to “democratize business intelligence” by making it available to all levels of workers throughout companies.  With the addition of PerformancePoint to the SharePoint Enterprise version of SharePoint, this vision is realized, finally taking business intelligence out of the hands of the few and into the hands of many.</p>
<p>• Today’s work occurs over multiple locations, whether it is in different countries, office locations, separate departments or at your home office. SharePoint enables teams and individuals to connect and collaborate together regardless of where they are located.</p>
<p>• Surveys have shown that employees can spend up to 20 – 30 % of their day searching for data and information.  SharePoint eliminates this drag on productivity by providing the robust search functionality needed to find the information and expertise buried in the thousands, or hundreds of thousands of files a company generates in the course of business.</p>
<p>• It’s difficult and time consuming to create and maintain sites.  SharePoint allows anyone to <a href="http://www.dhanashree.com/web-development-services" target="_blank">create sites</a> for use within their company’s Intranet, as they are needed, whether they are departmental sites, document libraries, meetings sites, survey sites, or discussion boards.</p>
<p>Ref: <a href="http://office.microsoft.com/en-us/sharepointserver/FX100492001033.aspx">http://office.microsoft.com/en-us/sharepointserver/FX100492001033.aspx</a></p>
<p><strong><span style="text-decoration: underline;"><br />
</span></strong></p>
<p><strong><span style="text-decoration: underline;">iPhone Application Development</span></strong></p>
<p><strong><span style="text-decoration: underline;"> </span></strong></p>
<p><strong><span style="text-decoration: underline;"> </span></strong></p>
<p>iPhone is Revolutionary device which is designed and marketed by Apple Inc. iPhone provides downgraded version of OS framework to Mac OS X framework. iPhone has Cocoa Touch Framework.</p>
<p>Development tools involved in <a href="http://www.dhanashree.com/web-development-services/mobile-application-iphone-application-anoroid-development" target="_blank">IPhone application development</a>:</p>
<p><strong>XCode</strong>: Complete <a href="http://www.dhanashree.com/web-development-services" target="_blank">development</a> environment provides project management, a powerful source editor, and a graphical debugger</p>
<p><strong>iPhone Simulator</strong>: Run, test, and debug your <a href="http://www.dhanashree.com/web-development-services/web-software-application-development" target="_blank">application</a> locally on your Mac using a simulated iPhone</p>
<p><strong>Instruments</strong>: Collect, display, and compare performance data graphically in real-time to optimize your application.</p>
<p><strong>Interface Builder: </strong>Interface Builder makes <a href="http://www.dhanashree.com/web-development-services/website-designing" target="_blank">designing</a> a user interface as easy as drag and drop.</p>
<p>The more detail on the <a href="http://www.dhanashree.com/web-development-services/mobile-application-iphone-application-anoroid-development" target="_blank">iPhone application development</a>, check out the official “iPhone Developer Program” website.</p>
<p><a href="http://developer.apple.com/iphone/program/">http://developer.apple.com/iphone/program/</a></p>
<p><strong><em><span style="text-decoration: underline;">Development Related</span></em></strong></p>
<p><strong> </strong></p>
<p><strong><span style="text-decoration: underline;">ORM</span></strong></p>
<p>Object-relational mapping is used to map object-oriented programming objects to relational databases managed by Oracle, DB2, Sybase, and other relational database managers (RDBMSs). This site provides facts about object-relational mapping products, architecture problem-solving, and direction in product comparison and selection.</p>
<p>Object-relational mapping products are designed to work well with object programming languages such as C#, C++, and Java. Database objects appear as programming language objects. Often, the interface for object-relational mapping products is the same as the interface for object-oriented databases.</p>
<p><strong>ORM tools for .Net</strong></p>
<p>ADO.NET Entity Framework is an <a title="Object-relational mapping" href="http://en.wikipedia.org/wiki/Object-relational_mapping">object-relational mapping</a> (ORM) framework for the <a title=".NET Framework" href="http://en.wikipedia.org/wiki/.NET_Framework">.NET Framework</a>. This framework is an ORM offering from Microsoft for the <a title=".NET Framework" href="http://en.wikipedia.org/wiki/.NET_Framework">.NET Framework</a></p>
<p><a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">ADO.NET</a> Entity Framework is included with <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">.NET</a> Framework 3.5 Service Pack 1 and <a title="Microsoft Visual Studio" href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio">Visual Studio 2008</a> Service Pack 1, released on 11 Aug 2008. It also includes the capability of executing <a title="Language Integrated Query" href="http://en.wikipedia.org/wiki/Language_Integrated_Query">LINQ</a> against ADO.NET Entity Framework entities.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>ORM for PHP</strong></p>
<p><strong> </strong></p>
<p>There are several tools available right now for implementing ORM technique in PHP.</p>
<p>Following are the list of few ORM tools which can be used with PHP.</p>
<ul>
<li><a href="http://cakephp.org/">CakePHP</a>’s ORM layer</li>
<li><a href="http://www.symfony-project.org/">Symfony</a></li>
<li><a href="http://www.phpdoctrine.org/">Doctrine</a></li>
<li><a href="http://propel.phpdb.org/trac/">Propel</a></li>
</ul>
<p>Check out following articles which demonstrate you in detail ORM implementation in PHP.</p>
<p><a href="http://www.developertutorials.com/blog/php/getting-started-with-orm-in-php-331/">http://www.developertutorials.com/blog/php/getting-started-with-orm-in-php-331/</a><br />
<strong><span style="text-decoration: underline;">Microsoft .Net 3.5</span></strong></p>
<p>There are several .NET language enhancements to be introduced with Visual Studio 2008 including implicitly typed variables, extension methods, anonymous types, object initializers, collection initializers and automatic properties. These language enhancements, along with features like generics, are critical to the use of some of the new features, such as LINQ with the ADO.NET Entity Framework.</p>
<p>These are the such enhancements in .net framework which really can bust development as well as productivity of <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">developers</a>.</p>
<p>Following are the few of articles which demonstrate the practical usage of new .net framework 3.5 enhancement.</p>
<p><a href="http://www.simple-talk.com/dotnet/.net-framework/.net-3.5-language-enhancements/">http://www.simple-talk.com/dotnet/.net-framework/.net-3.5-language-enhancements/</a></p>
<p><strong><span style="text-decoration: underline;">MVC framework</span></strong></p>
<p>MVC is a framework methodology that divides an application&#8217;s implementation into three component roles: models, views, and controllers.</p>
<ul>
<li>&#8220;Models&#8221;      in a MVC based application are the components of the application that      are responsible for maintaining state.  Often this state is      persisted inside a database (for example: we might have a Product class      that is used to represent order data from the Products table inside SQL).</li>
</ul>
<ul>
<li>&#8220;Views&#8221;      in a MVC based application are the components responsible for      displaying the application&#8217;s user interface.  Typically      this UI is created off of the model data (for example: we might      create an Product &#8220;Edit&#8221; view that surfaces textboxes, dropdowns      and checkboxes based on the current state of a Product object).</li>
</ul>
<ul>
<li>&#8220;Controllers&#8221;      in a MVC based application are the components responsible for      handling end user interaction, manipulating the model, and ultimately      choosing a view to render to display UI.  In a MVC application the      view is only about displaying information &#8211; it is the controller that      handles and responds to user input and interaction.</li>
</ul>
<p>One of the benefits of using a MVC methodology is that it helps enforce a clean separation of concerns between the models, views and controllers within an <a href="http://www.dhanashree.com/web-development-services/web-software-application-development" target="_blank">application</a>.  Maintaining a clean separation of concerns makes the testing of applications much easier, since the contract between different application components are more clearly defined and articulated.</p>
<p>The MVC pattern can also help enable red/green <a href="http://en.wikipedia.org/wiki/Test-driven_development" target="_blank">test driven development</a> (TDD) &#8211; where you implement automated unit tests, which define and verify the requirements of new code, first before you actually write the code itself.</p>
<p><strong>MVC Framework for .NET</strong></p>
<p>The <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">ASP.NET</a> MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating MVC-based <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">Web applications</a></p>
<p>Check out following articles for the overview of ASP.NET MVC framework</p>
<p><em><a href="http://www.asp.net/learn/mvc/tutorial-01-cs.aspx">http://www.asp.net/learn/mvc/tutorial-01-cs.aspx</a></em></p>
<p><em> </em></p>
<p><strong>MVC Framework for PHP</strong></p>
<p>php.MVC implements the Model-View-Controller (MVC) design pattern, and encourages application design based on the Model 2 paradigm. This design model allows the Web page or other contents (View) to be mostly separated from the internal application code (Controller/Model), making it easier for <a href="http://www.dhanashree.com/web-development-services/website-designing/website-designing-services" target="_blank">designers</a> and <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">programmers</a> to focus on their respective areas of expertise.</p>
<p>Reference: <a href="http://www.phpmvc.net/">http://www.phpmvc.net/</a><br />
<strong><span style="text-decoration: underline;">IIS Search Engine Optimization Toolkit</span></strong></p>
<p>The IIS <a href="http://www.dhanashree.com/web-development-services/search-engine-promotion-submission" target="_blank">Search Engine Optimization</a> (SEO) Toolkit helps <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">Web developers</a>, hosting providers, and Web server administrators to improve their Web site’s relevance in search results by recommending how to make the site content more search engine-friendly. The IIS <a href="http://www.dhanashree.com/web-development-services/search-engine-promotion-submission" target="_blank">SEO</a> Toolkit includes the Site Analysis module, the Robots Exclusion module, and the Sitemaps and Site Indexes module, which let you perform detailed analysis and offer recommendations and editing tools for managing your Robots and Sitemaps files.</p>
<p>The components of IIS Search Engine Optimization Toolkit include the following features:</p>
<ol>
<li>Site Analysis:</li>
</ol>
<p>1.1. Fully featured site crawling engine &#8211; in order to perform detailed analysis of site&#8217;s structure and content, Site Analysis tool uses a built-in web crawler, called &#8220;iisbot&#8221;, to download and cache all the publicly available web site content. The web crawler is fully compliant with robots exclusion protocol.</p>
<p>1.2. Report summary dashboard &#8211; the results of site analysis are presented in an easy to use dashboard page that serves as a start page for various types of analysis. In addition this page includes a large set of pre-built queries for most common reports.</p>
<p>1.3. Query builder &#8211; Site Analysis tool includes a powerful and flexible query builder user interface that lets you create any custom queries that are run against the cached web site content.</p>
<p>1.4.  Detailed URL information &#8211; you can obtain various detailed information about every URL in your web site, such as response headers and content, the pages that link to that URL as well as all the referenced URLs.</p>
<p>1.5. Detailed Violations descriptions &#8211; each content or SEO violation found on a web site has a detailed description as well as a recommended corrective action.</p>
<p>1.6. Word Analysis &#8211; any web page can be analyzed with regards to the most commonly used words and phrases within the content of that page. The results of that analysis can be used to select the keywords that most accurately describe the content of the page.</p>
<p>1.7. Route Analysis &#8211; unique routes to any page can be displayed in a separate report. This kind of information helps better understand how search engine and site visitors reach a particular page on your web site.</p>
<ol>
<li>Robots Exclusion</li>
</ol>
<p>2.1.   User interface for editing robots.txt file &#8211; the content of the robots exclusion file &#8211; robots.txt &#8211; can be edited by using IIS Manager GUI</p>
<p>2.2. Selecting URL paths from physical view of web site &#8211; the paths that are specified for &#8220;Allow&#8221; and &#8220;Disallow&#8221; directives in robots.txt file can be selected from the physical file system layout of your web site.</p>
<p>2.3. Selecting URL paths from virtual view of web site &#8211; the paths that are specified for &#8220;Allow&#8221; and &#8220;Disallow&#8221; directives in robots.txt file can be selected from the logical view of your web site obtained from the results of site analysis.</p>
<ol>
<li>Sitemaps and Sitemap Indexes</li>
</ol>
<p>3.1. User interface for managing sitemap and sitemap indexes files &#8211; the content of the sitemap and indexes files can be edited by using IIS Manager GUI</p>
<p>3.2. Selecting URLs from physical view of web site &#8211; the URLs that are specified within a sitemap can be selected from the physical file system layout of your web site.</p>
<p>3.3. Selecting URLs from virtual view of web site &#8211; the URLs that are specified within a sitemap can be selected from the logical view of your web site obtained from the results of site analysis.</p>
<p><strong><span style="text-decoration: underline;">Rich Internet Application Tools</span></strong></p>
<p><strong><span style="text-decoration: underline;"> </span></strong></p>
<p><strong>Adobe AIR</strong></p>
<p>The Adobe® AIR™ runtime lets <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">developers</a> use proven <a href="http://www.dhanashree.com/web-development-services" target="_blank">web technologies</a> to build rich <a href="http://www.dhanashree.com/web-development-services/web-software-application-development/supply-chain-management" target="_blank">Internet applications</a> that run outside the browser on multiple operating systems.</p>
<p>Adobe AIR is divided into 3 different categories as per the expertise of particular <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer/dedicated-development-team" target="_blank">developer</a>.</p>
<p>AJAX: <a href="http://www.adobe.com/products/air/develop/ajax/">http://www.adobe.com/products/air/develop/ajax/</a></p>
<p>AIR with Flex : <a href="http://www.adobe.com/products/air/develop/flex/">http://www.adobe.com/products/air/develop/flex/</a></p>
<p>AIR with flash: <a href="http://www.adobe.com/products/air/develop/flash/">http://www.adobe.com/products/air/develop/flash/</a></p>
<p><strong>Google Web toolkit</strong></p>
<p>Google Web Toolkit 1.6 is a unique and remarkable platform-independent Java to JavaScript cross-compiler. The whole application may be written using most of the Java 1.5 features for which there is much tooling and test support. Not only that, but it is also possible to follow the Model View Controller (MVC) approach separating user interface from business logic, reducing cost of maintenance and increasing development flexibility. DOJO, on the other hand, requires you to develop the client using only the JavaScript language. This can be much more time consuming and more difficult to work with<strong> </strong></p>
<p><a href="http://code.google.com/webtoolkit/">http://code.google.com/webtoolkit/</a></p>
<p><strong>jQuery</strong></p>
<p>jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid <a href="http://www.dhanashree.com/dhanashree-web-development-profile" target="_blank">web development</a>. jQuery is designed to change the way that you write JavaScript.</p>
<p><a href="http://jquery.com/">http://jquery.com/</a></p>
<p><strong>Yahoo User Interface</strong></p>
<p>The YUI Library is a set of utilities and controls, written in JavaScript, for building richly <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">interactive web applications</a> using techniques such as DOM scripting, DHTML and AJAX</p>
<p><a href="http://developer.yahoo.com/yui/">http://developer.yahoo.com/yui/</a></p>
<p>Apart from these library/toolkits, there are several other toolkits which can also be utilized.</p>
<p>Mootools: <a href="http://mootools.net/">http://mootools.net/</a></p>
<p>Dojo: <cite><a href="http://www.dojotoolkit.org/">www.<strong>dojo</strong>toolkit.org/</a></cite></p>
<p>List of other toolkits: <a href="http://www.javascriptlibraries.com/">http://www.javascriptlibraries.com/</a></p>
<p><strong>Tools for Web Development &amp; Testing</strong></p>
<p>Following are few exiting tools for the <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">web development</a> testing.</p>
<ol>
<li>XenoCode Browser SandboxBrowser testing is one of the most tedious and frustrating parts of <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">web development</a>. What <a href="http://www.dhanashree.com/web-development-services/website-designing/website-designing-services" target="_blank">designer</a> or programmer hasn’t screamed bloody murder at broken alignments in Internet Explorer 6? One of the difficult parts of browser testing is that no developer can have every browser type on a single computer for proper testing.Enter XenoCode Browser Sandbox, a series of virtual applications that can run all popular browsers simultaneously. It does not even require the installation of software. However, XenoCode (Xenocode)’s Browser Sandbox can be heavy in some browsers and is still lacking in a Mac version.Use the following URL for further instruction on how to make use of such toolsRef: <a href="http://www.xenocode.com/browsers/">http://www.xenocode.com/browsers/</a></li>
<li>W3C Validation ServicesW3C is THE standard in all of web validation. The W3C Validator looks into the markup of any website and display errors based on industry standards. It comes in over a dozen languages and a dozen varieties. Here are some of the most important validators:Following are the popular validation services provided by W3C<a href="http://validator.w3.org/" target="_blank">W3C Markup Validation</a><br />
<a href="http://jigsaw.w3.org/css-validator/" target="_blank">W3C CSS Validation</a><br />
<a href="http://validator.w3.org/checklink" target="_blank">W3C Link Checker</a><br />
<a href="http://validator.w3.org/mobile/" target="_blank">W3C mobileOK Checker</a></li>
<li>Javascript &amp; CSS minifyHere is the site which allows you to minify javascript and perhaps the css also<a href="http://www.vlead.in/resources/tools/minify-javascript/index.php">http://www.vlead.in/resources/tools/minify-javascript/index.php</a></li>
</ol>
<p>Following are the list of few articles which can also be referenced for different area of</p>
<p><strong>Web development tools</strong></p>
<p>There are many other tools available over the internet which can be utilized in daily <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">web development</a>.</p>
<p>Check out following link to improve your productivity</p>
<p><a href="http://mashable.com/2008/11/01/web-development-tools/">http://mashable.com/2008/11/01/web-development-tools/</a></p>
<p><strong>Web 2.0 application &amp; tools</strong></p>
<p><em><a href="http://www.go2web20.net/">http://www.go2web20.net</a></em></p>
<p><span style="text-decoration: underline;"><strong><em><br />
</em></strong></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="color: red;" lang="EN-IN"><span style="font-size: 11pt;"><span style="font-family: Calibri;"><br />
NOTE<span style="mso-spacerun: yes;"> </span>:</span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;">If you are in need of any </span><a href="http://dhanashree.com/web-development-services/asp-php-web-development" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">Web Development</span></a><span style="font-size: 11pt; font-family: Calibri;"> feel free to <span style="text-decoration: underline;"><a href="http://dhanashree.com/contact-web-designing-company" target="_blank">Inquire us</a></span> .<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a></span>. Expertise in <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">Asp.net Development</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">Php Development</a></span>,<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/website-designing" target="_blank">Website designing</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/open-source-wordpress-joomla-oscommerce-customisation" target="_blank">Open Source customisation</a></span>. <span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a> </span>can be our <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/offshore-website-designing-company" target="_blank">offshore development company</a></span> / </span><a href="http://dhanashree.com/web-designing-outsource-advantages" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">outsourcing</span></a><span style="font-size: 11pt; font-family: Calibri;"> <span style="text-decoration: underline;"><a href="http://dhanashree.com/dhanashree-web-development-profile" target="_blank">web development company</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">hire dedicated web programmers</a></span>.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;">Above information is for knowledge sharing<span style="mso-spacerun: yes;"> </span>if you have problem / issue / suggestion please intimate us with details for proper and prompt action.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techinsight.dhanashree.com/list-of-technology-which-can-be-adopted-into-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Smarty with PHP: A PHP Template Engine</title>
		<link>http://techinsight.dhanashree.com/using-smarty-with-php-a-php-template-engine/</link>
		<comments>http://techinsight.dhanashree.com/using-smarty-with-php-a-php-template-engine/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 07:46:21 +0000</pubDate>
		<dc:creator>kiran</dc:creator>
				<category><![CDATA[My SQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[Open source]]></category>

		<guid isPermaLink="false">http://dhanashree.com/techblog/?p=74</guid>
		<description><![CDATA[Most of the time in site development, first the designer makes the interface and breaks into HTML for developer and then developer starts by creating simple scripts to add dynamic features to their Web sites. In real time practice some or more changes are required by client, which increases complexity because of PHP and HTML [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the time in <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">site development</a>, first the <a href="http://www.dhanashree.com/web-development-services/website-designing" target="_blank">designer</a> makes the interface and breaks into HTML for <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">developer</a> and then developer starts by creating simple scripts to add dynamic features to their <a href="http://www.dhanashree.com/web-development-services/website-designing" target="_blank">Web sites</a>. In real time practice some or more changes are required by client, which increases complexity because of <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">PHP</a> and <a href="http://www.dhanashree.com/web-development-services/website-designing" target="_blank">HTML</a> in same page.  And another problem is that developer has to wait until designer completes design and <a href="http://www.dhanashree.com/web-development-services/website-designing" target="_blank">HTML layout</a>.</p>
<p><strong>Why Use Templates?</strong></p>
<p>Template process is quite valid and useful, and most <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">developers</a> who uses this method, agree that the separation of business logic and layout logic makes the code a lot easier to understand and maintain. This is the reason behind templates, to separate business logic from layout.</p>
<p><strong>Advantages of smarty</strong></p>
<p>Smarty is a new <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">development</a> concept in the <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer/dedicated-php-developer" target="_blank">PHP</a>, and it brings also several new and unique features. One of the mail advantages is that Smarty &#8216;compiles&#8217; the parsed templates into <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">PHP scripts</a>, and then reuses the compiled template when required. This brings a huge performance improvement over other template solutions, as the main <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">PHP script</a> doesn&#8217;t need to parse and output the same template on every request.</p>
<p>Smarty also allows <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">developers</a> to create their own set of functions and have Smarty recognize them. And it also has built-in caching support and special constructs that can be used on templates to control the format of the layout.</p>
<p>And very importantly, Smarty provides developers’ tools that help them separate the business-logic code from the layout-formatting code. And Smarty goes one step further by allowing developers to put control-flow structures in the template source. This might sound a bad idea, since it would imply business-like logic in the template, but it is actually quite useful. You can tell Smarty to use a specific style for any html control on the template itself, instead of having <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">PHP code</a> do this work. After all, this is template-related information.</p>
<p><strong>Installing Smarty</strong></p>
<p>Smarty is quite simple to install. You can get various versions available for <a href="http://smarty.php.net/">download Smarty</a>.</p>
<p>After downloading and extracting the files, copy the resulting Smarty directory to some place inside your include path. A good option is to copy this directory in the PEAR library directory. In UNIX environments, it will usually be:</p>
<p>$ cp -R Smarty /usr/local/lib/php/</p>
<p>In Windows computers, you will need to copy the Smarty directory to &#8216;C:\php\pear&#8217;.</p>
<p>Give write rights to Apache user for template directory and sub directories. This is the directory that smarty uses to store compiled templates.</p>
<p><strong>Using Smarty</strong></p>
<p>Now you have write simple <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer/dedicated-php-developer" target="_blank">PHP</a> script to manipulate and assign template variable to a value. Like..</p>
<p><span style="font-family: monospace; line-height: 18px; font-size: 12px; white-space: pre;">&lt;?php</span></p>
<pre><code> require 'Smarty.class.php';</code></pre>
<pre><code> $smarty = new Smarty; </code></pre>
<pre><code>$smarty-&gt;assign("variable_name","Variable Value");</code></pre>
<pre><span style="font-family: monospace;">$smarty-&gt;display('display.tpl');</span></pre>
<pre><code>?&gt;</code></pre>
<pre><span style="font-family: monospace;">
</span></pre>
<pre>Above script includes the Smarty class, which is included in <code>Smarty.class.php</code>. After that object is created for smarty class and the template variable named <code>$ variable_name</code>  will hold the value "<code> Variable Value</code>".</pre>
<pre>At the time of creating templates, the placeholders will be placed as <code>{$variable_name}</code>, but the placeholder delimiter can also be changed. <code>{$variable_name} will be replaced by its value and output to the browser.</code> Smarty also compiles the template into a PHP script, so the next time this script is requested, the template will not be parsed again and the compiled PHP script will be used instead.</pre>
<p><strong>Summery</strong></p>
<p>Also Control Flow statements, conditions can be used in smarty. Smarty works for <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer/dedicated-graphics-designer" target="_blank">designers</a> and <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer/dedicated-asp-net-developer" target="_blank">developers </a>both and also can reduce <a href="http://www.dhanashree.com/web-development-services/web-software-application-development" target="_blank">development</a> and maintenance time. One has to just go through syntax used for smarty and it will make your work easier.</p>
<p><span style="text-decoration: underline;"><strong><em><br />
</em></strong></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="color: red;" lang="EN-IN"><span style="font-size: 11pt;"><span style="font-family: Calibri;"><br />
NOTE<span style="mso-spacerun: yes;"> </span>:</span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;">If you are in need of any </span><a href="http://dhanashree.com/web-development-services/asp-php-web-development" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">Web Development</span></a><span style="font-size: 11pt; font-family: Calibri;"> feel free to <span style="text-decoration: underline;"><a href="http://dhanashree.com/contact-web-designing-company" target="_blank">Inquire us</a></span> .<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a></span>. Expertise in <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">Asp.net Development</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">Php Development</a></span>,<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/website-designing" target="_blank">Website designing</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/open-source-wordpress-joomla-oscommerce-customisation" target="_blank">Open Source customisation</a></span>. <span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a> </span>can be our <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/offshore-website-designing-company" target="_blank">offshore development company</a></span> / </span><a href="http://dhanashree.com/web-designing-outsource-advantages" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">outsourcing</span></a><span style="font-size: 11pt; font-family: Calibri;"> <span style="text-decoration: underline;"><a href="http://dhanashree.com/dhanashree-web-development-profile" target="_blank">web development company</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">hire dedicated web programmers</a></span>.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;">Above information is for knowledge sharing<span style="mso-spacerun: yes;"> </span>if you have problem / issue / suggestion please intimate us with details for proper and prompt action.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techinsight.dhanashree.com/using-smarty-with-php-a-php-template-engine/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>10 PHP Open source Ecommerce Framework</title>
		<link>http://techinsight.dhanashree.com/10-php-open-source-ecommerce-framework/</link>
		<comments>http://techinsight.dhanashree.com/10-php-open-source-ecommerce-framework/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 10:20:06 +0000</pubDate>
		<dc:creator>kiran</dc:creator>
				<category><![CDATA[My SQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[Ecommerce]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open source]]></category>

		<guid isPermaLink="false">http://dhanashree.com/techblog/?p=59</guid>
		<description><![CDATA[Electronic commerce, commonly known as e-commerce or eCommerce, consists of the buying and selling of products or services over electronic systems such as the Internet and other computer networks. The amount of trade conducted electronically has grown extraordinarily since the spread of the Internet. A wide variety of commerce is conducted in this way, spurring [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">Electronic commerce</a>, commonly known as e-commerce or <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">eCommerce</a>, consists of the buying and selling of products or services over electronic systems such as the <a href="http://www.dhanashree.com/web-development-services/website-designing/website-designing-services" target="_blank">Internet</a> and other computer networks. The amount of trade conducted electronically has grown extraordinarily since the spread of the Internet. A wide variety of commerce is conducted in this way, spurring and drawing on innovations in <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/payment-gateway-integration" target="_blank">electronic funds transfer</a>, <a href="http://www.dhanashree.com/web-development-services/web-software-application-development/supply-chain-management" target="_blank">supply chain management</a>, Internet marketing, online transaction processing, electronic data interchange (EDI), inventory management systems, and automated data collection systems. Modern electronic commerce typically uses the World Wide Web at least at some point in the transaction&#8217;s lifecycle, although it can encompass a wider range of technologies such as e-mail as well.</p>
<p>Experience the most comprehensive software as a service (SaaS) <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">ecommerce solution</a> available today. Target explosive growth with a solution that combines over 250+ award-winning ecommerce software features with a highly customizable web storefront, enterprise-class site hosting (99.9% uptime), and a robust shopping experience for customers.  Give your customers the best <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">shopping</a> experience with the latest social media and web 2.0.</p>
<p><a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">Online shopping</a>, an important component of electronic commerce was invented by Michael Aldrich in the UK in 1979. The world&#8217;s first recorded B2B was Thomson Holidays in 1981</p>
<p>ü  The first recorded B2C was Gateshead SIS/Tesco in 1984</p>
<p>ü  The world&#8217;s first recorded online shopper was Mrs. Jane Snowball of Gateshead,  England</p>
<p>ü  During the 1980s, online shopping was also used extensively in the UK by auto manufacturers such as Ford, Peugeot-Talbot, General Motors and Nissan.</p>
<p>ü   All these organizations and others used the Aldrich systems. The systems used the switched public telephone network in dial-up and leased line modes. There was no broadband capability.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong>There are 10 PHP Open source Ecommerce Framework.</strong></p>
<p><strong><img class="alignnone size-full wp-image-62" title="image002" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0022.jpg" alt="image002" width="48" height="45" />Zen Cart</strong></p>
<p><strong> </strong></p>
<p>Zen Cart truly is the art of e-commerce; a free, user-friendly, open source <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">shopping cart system</a>. The software is being developed by group of like-minded shop owners, <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer/dedicated-php-developer" target="_blank">programmers</a>, <a href="http://www.dhanashree.com/web-development-services/dedicated-php-dotnet-developer/dedicated-graphics-designer" target="_blank">designers</a>, and consultants that think e-commerce could be and should be done differently. Some solutions seem to be complicated programming exercises instead of responding to users&#8217; needs, Zen Cart puts the merchant&#8217;s and shopper&#8217;s requirements first. Similarly, other programs are nearly impossible to install and use without an IT degree, Zen Cart can be installed and set-up by anyone with the most basic computer skills. Others are so expensive &#8230; not Zen Cart it&#8217;s FREE!</p>
<p>Zen Cart will deliver the ultimate online shopping experience to your customers. Navigating through your merchandise offerings is a breeze with Zen Cart, the program provides several &#8220;Spotlight&#8221; lists in addition to the traditional category to product links. Once a product is added to the <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">shopping cart</a>, secure checkout is a simple 3-step process. After providing the billing information, your customer chooses the shipping method. (Multiple shipping methods including real-time internet shipping quotes are built-in) Next, a payment type is chosen from one of the popular <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/payment-gateway-integration" target="_blank">payment modules</a>. (Pay Pal and AuthorizeNet are just 2 of the included modules) Last, the customer reviews the order, shipping and payment choices, and confirms the order. You are immediately notified of the order and your customer automatically receives an e-mail confirmation.</p>
<p>Zen Cart gives <a href="http://www.dhanashree.com/web-development-services/website-designing" target="_blank">web designers</a> a robust and customizable electronic storefront that&#8217;s easy to keep up-to-date with new features. It provides usable, intuitive and unobtrusive purchase flows right out of the box based on proven industry best-practices &#8211; there are no major revisions required to get things right for your clients!</p>
<p>One of the secrets behind its power lies in our robust template system that &#8220;abstracts&#8221; the look-and-feel from the code and logic behind Zen Cart. This enables you to give clients a truly custom solution that integrates quickly and perfectly with their existing marketing websites.</p>
<p><strong><img class="alignnone size-full wp-image-63" title="image004" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0041.jpg" alt="image004" width="48" height="49" />OsCommerce</strong></p>
<p>OsCommerce is the leading Open Source online shop <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">e-commerce solution</a> that is available for free under the GNU General Public License. It features a rich set of out-of-the-box online shopping cart functionality that allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs, license fees, or limitations-involved.</p>
<p>The goal of the osCommerce project is to continually evolve by attracting a community that supports the ongoing development of the project at its core level and extensively through contributions to provide additional functionality to the already existing rich feature-set.</p>
<p>Everything you need to get started in selling physical and digital goods over the internet, from the Catalog front-end that is presented to your customers, to the Administration Tool back end that completely handles your products, customers, orders, and online store data.</p>
<p><a href="http://php.opensourcecms.com/scripts/details.php?scriptid=308&amp;name=CartStore%20Shopping%20Cart%20Software"></a><strong><img class="alignnone size-full wp-image-69" title="image005" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0051.jpg" alt="image005" width="48" height="20" />CartStore Shopping Cart Software</strong></p>
<p><strong> </strong></p>
<p>CartStore is a sophisticated ecommerce platform that was built for actual real <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">ecommerce websites</a>. It has been in development since March of 2000. It was forked from the osCommerce project in 2006 where extensive development and modernization occurred.</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong><img class="alignnone size-full wp-image-65" title="image007" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0071.jpg" alt="image007" width="48" height="48" />Eclime &#8211; E-Commerce Jet Engine</strong></p>
<p><strong> </strong></p>
<p>CartStore is a sophisticated ecommerce platform that was built for actual real <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">ecommerce websites</a>. It has been in development since March of 2000. It was forked from the osCommerce project in 2006 where extensive development and modernization occurred.</p>
<p><strong><img class="alignnone size-full wp-image-70" title="image009" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0091.jpg" alt="image009" width="48" height="40" />Freeway</strong><br />
Freeway is the most advanced <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">Open Source eCommerce</a> platform and includes an array of features not found in extremely expensive commercial systems. Without having to purchase a commercial system and then paying a developer to build custom installation, Freeway does most of what you need out of the box. For example, instead of getting dragged into purchasing an overpriced products based system and having a developer struggle for weeks and eventually fail to force products sales into event sales, Freeway already support events AND services AND subscriptions.</p>
<p><strong><img class="alignnone size-full wp-image-66" title="image011" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0111.jpg" alt="image011" width="48" height="56" />Magento</strong></p>
<p><strong> </strong></p>
<p>Magento is a new professional open-source <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">eCommerce solution</a> offering unprecedented flexibility and control. Magento was designed with the notion that each eCommerce implementation has to be unique since no two businesses are alike. Magento&#8217;s modular architecture puts the control back in the hands of the online merchant and places no constraints on business processes and flow</p>
<p>.</p>
<p><strong><img class="alignnone size-full wp-image-67" title="image013" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0131.jpg" alt="image013" width="48" height="48" />OpenCart</strong></p>
<p><strong> </strong></p>
<p>OpenCart is an open source <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development" target="_blank">PHP-based online shopping cart system</a>. A robust</p>
<p>E-commerce solution for Internet merchants with the ability to create their own online business and participate in e-commerce at a minimal cost.</p>
<p><strong><img class="alignnone size-full wp-image-71" title="image015" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0151.jpg" alt="image015" width="48" height="36" />OsCSS</strong></p>
<p>OsCSS web standard compliant <a href="http://www.dhanashree.com/web-development-services/open-source-wordpress-joomla-oscommerce-customisation" target="_blank">open source</a> online shop. The design structure is based on a template system, easily customizable and build on CSS / XHTML</p>
<p><strong><img class="alignnone size-full wp-image-68" title="image017" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0171.jpg" alt="image017" width="48" height="62" />PrestaShop</strong></p>
<p>Despite its technical sophistication and advanced functionality, the PrestaShop <a href="http://www.dhanashree.com/web-development-services/asp-php-web-development/ecommerce-development" target="_blank">e-Commerce Solution</a> is very light (around 2 MB not including translation files), so it&#8217;s easy to download, install, and update.</p>
<p>PrestaShop is so lightweight and speedy, even customers with slow connection speeds will enjoy buying from you!</p>
<p><strong><img class="alignnone size-full wp-image-64" title="image019" src="http://dhanashree.com/techblog/wp-content/uploads/2009/12/image0191.jpg" alt="image019" width="48" height="22" />OXID eShop</strong></p>
<p>OXID eShop Community Edition is proven and flexible <a href="http://www.dhanashree.com/web-development-services/open-source-wordpress-joomla-oscommerce-customisation" target="_blank">open source software</a>. With its modular, state-of-the-art and standards-based architecture, customization is easy.</p>
<p>The above article is respected to share knowledge not commercial use.</p>
<p><span style="text-decoration: underline;"><strong><em><br />
</em></strong></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="color: red;" lang="EN-IN"><span style="font-size: 11pt;"><span style="font-family: Calibri;"><br />
NOTE<span style="mso-spacerun: yes;"> </span>:</span></span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;">If you are in need of any </span><a href="http://dhanashree.com/web-development-services/asp-php-web-development" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">Web Development</span></a><span style="font-size: 11pt; font-family: Calibri;"> feel free to <span style="text-decoration: underline;"><a href="http://dhanashree.com/contact-web-designing-company" target="_blank">Inquire us</a></span> .<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a></span>. Expertise in <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/dot-net-web-designing" target="_blank">Asp.net Development</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/asp-php-web-development/lamp-development-php-web-designing" target="_blank">Php Development</a></span>,<span style="mso-spacerun: yes;"> </span><span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/website-designing" target="_blank">Website designing</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/open-source-wordpress-joomla-oscommerce-customisation" target="_blank">Open Source customisation</a></span>. <span style="text-decoration: underline;"><a href="http://dhanashree.com/" target="_blank">Dhanashree Inc</a> </span>can be our <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/offshore-website-designing-company" target="_blank">offshore development company</a></span> / </span><a href="http://dhanashree.com/web-designing-outsource-advantages" target="_blank"><span style="font-size: 11pt; font-family: Calibri;">outsourcing</span></a><span style="font-size: 11pt; font-family: Calibri;"> <span style="text-decoration: underline;"><a href="http://dhanashree.com/dhanashree-web-development-profile" target="_blank">web development company</a></span>, <span style="text-decoration: underline;"><a href="http://dhanashree.com/web-development-services/dedicated-php-dotnet-developer" target="_blank">hire dedicated web programmers</a></span>.</span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span lang="EN-IN"><span style="font-size: 11pt; font-family: Calibri;">Above information is for knowledge sharing<span style="mso-spacerun: yes;"> </span>if you have problem / issue / suggestion please intimate us with details for proper and prompt action.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techinsight.dhanashree.com/10-php-open-source-ecommerce-framework/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

