<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Fundaa.com</title>
	<link>http://fundaa.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 12:44:27 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>[SOLVED] duplicate tags in nusoap</title>
		<description><![CDATA[When you are using nusoap to connect to a soap webservice. The xml that the class sends to the service is constructed from an array, ie:

$params = array("param1" => "value1", "param2" => "value1");
$result = $client-&#62;call("yourfunctionname", $params);

This works fine. A multidimensional array also constructs a nice nested xml message.
You generally encounter a problem when you need two tags with the same name:

&#60;items&#62;
   &#60;item&#62;value 1&#60;/item&#62;
   &#60;item&#62;value 2&#60;/item&#62;
&#60;/item&#62;
$params = array("items" =&#62; array("item" =&#62; "value 1", "item" =&#62; "value 2"));
$result = $client-&#62;call("yourfunctionname", $params);

The second item in the array overwrites the ...]]></description>
		<link>http://fundaa.com/php/solved-duplicate-tags-in-nusoap/</link>
			</item>
	<item>
		<title>Copy mysql db from old to new via SSH</title>
		<description><![CDATA[For example, if you have database called db_name that you want to copy to new_db_name, you would first create a &#8220;database dump&#8221; file using:
mysqldump -u db_name -p db_name > a.dump 
It will prompt for db password enter it here.
Then create the new database via web hosting control panel
mysql -u new_db_name -p new_db_name < a.dump
It will prompt for db password enter it here
]]></description>
		<link>http://fundaa.com/mysql/copy-mysql-db-from-old-to-new-via-ssh/</link>
			</item>
	<item>
		<title>MySQL Search &amp; Replace Tool</title>
		<description><![CDATA[This web-based tool written in PHP makes it easy to search and replace text strings in a MySQL database.
Usually, I develop WordPress sites on a local development server and, when they are ready to launch, I move them to a live web server.
MySQL Search &#038; Replace
For database-driven sites created with content management systems like WordPress, Drupal, and Joomla, this means moving any custom themes and plugins, and it often entails exporting data from the development server’s database and copying it to the live web server.
With small databases, your content management ...]]></description>
		<link>http://fundaa.com/featured/mysql-search-replace-tool/</link>
			</item>
	<item>
		<title>when you save the node the restrictions don&#8217;t get saved along with it &#8211; Restricted content module in drupal</title>
		<description><![CDATA[Ran into a problem on node form add: there is no nid assigned, so when you save the node the restrictions don&#8217;t get saved along with it. The node doesn&#8217;t exist, so at that point in the form it has no nid &#8212; a value of nid=0 was being added to {restricted content}.
What the user would see is the access restriction just not being saved. They&#8217;d have to go back in and edit the saved node, and then set the access again before it would &#8220;take.&#8221;
Here is the solution :
function ...]]></description>
		<link>http://fundaa.com/drupal/when-you-save-the-node-the-restrictions-dont-get-saved-along-with-it-restricted-content-module-in-drupal/</link>
			</item>
	<item>
		<title>Dynamic Price Updater in Zencart</title>
		<description><![CDATA[Dynamic price updater is a module which u can use to update the price on the product info page of the Zen cart. When u select any check-box or select from drop down or input the quantity of the product it dynamically updates the price on the the product info page which is a very useful tool in the zen cart.
It uses the ajax and jscript to update the price dynamically. Click here to download the files

After downloading the file just include the files in your project as they are ...]]></description>
		<link>http://fundaa.com/zen-cart/dynamic-price-updater-in-zencart/</link>
			</item>
	<item>
		<title>Preventing Browser Cache in php</title>
		<description><![CDATA[If you dont want that browser dont cache your web page just add the following code in header.


&#60;?php
  header("Cache-Control: no-cache, must-revalidate");           // HTTP/1.1
  header("Pragma: no-cache");                                   // HTTP/1.0
 ?&#62;


this will set server to not cache web content of this perticuler page.
]]></description>
		<link>http://fundaa.com/featured/preventing-browser-cache-in-php/</link>
			</item>
	<item>
		<title>[solved] google analytics not working</title>
		<description><![CDATA[When google analytics module stop working,
follow below steps to get back working
&#8211; check your modules compatibility if module has a new updates then update that module
&#8211; check your footer id there is function wp_footer() is there or not
&#8211; check your Analytics Account ID has right value
]]></description>
		<link>http://fundaa.com/wordpress/solved-google-analytics-not-working/</link>
			</item>
</channel>
</rss>

