<?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>yalamber.com &#187; phpizabi</title>
	<atom:link href="http://blog.yalamber.com/category/phpizabi/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yalamber.com</link>
	<description>About me, my learnings and more..</description>
	<lastBuildDate>Thu, 02 Sep 2010 16:29:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>phpizabi is not dead</title>
		<link>http://blog.yalamber.com/2009/08/14/phpizabi-is-not-dead/</link>
		<comments>http://blog.yalamber.com/2009/08/14/phpizabi-is-not-dead/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 18:34:30 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[phpizabi]]></category>

		<guid isPermaLink="false">http://blog.yalamber.com/?p=176</guid>
		<description><![CDATA[We almost thought phpizabi was dead. But with this statement by Claude D. at phpizabi.net it&#8217;s alive. A new version i under work. it&#8217;s named PHPizabi 2 VCP, Orion. What would it be if we would break the barriers between &#8230; <a href="http://blog.yalamber.com/2009/08/14/phpizabi-is-not-dead/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We almost thought phpizabi was dead. But with this statement by Claude D. at phpizabi.net it&#8217;s alive. A new version i under work. it&#8217;s named PHPizabi 2 VCP, Orion. </p>
<blockquote><p>
What would it be if we would break the barriers between the informative and the social web – If we would fusion applicative and interactive? What would it be if we would revise the nature of the software that became a powerful social platform and reorient it to become a global axe for virtual content distribution? – What would your V2 be?</p></blockquote>
<p>I hope for all success of this project. please visit <a href="http://ww2.phpizabi.net/?L=special.vcp">http://ww2.phpizabi.net/?L=special.vcp</a> to know more about it. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2009/08/14/phpizabi-is-not-dead/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>using youtube api to upload videos from your site</title>
		<link>http://blog.yalamber.com/2009/04/15/using-youtube-api-to-upload-videos-from-your-site/</link>
		<comments>http://blog.yalamber.com/2009/04/15/using-youtube-api-to-upload-videos-from-your-site/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 02:55:26 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpizabi]]></category>
		<category><![CDATA[socialnetwork]]></category>
		<category><![CDATA[youtube api]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=158</guid>
		<description><![CDATA[I wanted to create a video site but lacked the server resources to run it, I am using a shared server, it has ffmpeg but when converting a video it takes lot&#8217;s of system resources. I successfully made the fmpeg &#8230; <a href="http://blog.yalamber.com/2009/04/15/using-youtube-api-to-upload-videos-from-your-site/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wanted to create a video site but lacked the server resources to run it, I am using a shared server, it has ffmpeg but when converting a video it takes lot&#8217;s of system resources. I successfully made the fmpeg video site, But didn&#8217;t decide to use it. I searched for youtube APIs and i came to know we could simply use the youtube api to upload videos from our site to youtube. So i decided to use it for my video site. Below is step by step tutorial on using youtube api to upload videos from your site to youtube, I used the clientLogin method of youtube api to upload videos.</p>
<ol>
<li>First get the developer key for using youtube api.<br />
Go to http://code.google.com/apis/youtube/dashboard/ and regsiter a developer key<br />
You will be given client id and  developer key. Note it down, it will be used in your own application later.</li>
<li>Get the php client libraries, Go to http://framework.zend.com/download/gdata</li>
<li>extract it to your server. I assume you put the Zend direcctory in your server document root.</li>
<li>Create a form in your site as below which i assume will be pointed to upload.php file in your srver.</li>
</ol>
<pre class="brush: html">
&lt;form action=&quot;upload.php&quot;  method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;&gt;
&lt;select name=&quot;videoCategory&quot;&gt;
&lt;option value=&quot;Autos&quot;&gt;Autos &amp;amp;amp; Vehicles&lt;/option&gt;
&lt;option value=&quot;Music&quot;&gt;Music&lt;/option&gt;
&lt;option value=&quot;Animals&quot;&gt;Pets &amp;amp;amp; Animals&lt;/option&gt;
&lt;option value=&quot;Sports&quot;&gt;Sports&lt;/option&gt;
&lt;option value=&quot;Travel&quot;&gt;Travel &amp;amp;amp; Events&lt;/option&gt;
&lt;option value=&quot;Games&quot;&gt;Gadgets &amp;amp;amp; Games&lt;/option&gt;
&lt;option value=&quot;Comedy&quot;&gt;Comedy&lt;/option&gt;
&lt;option value=&quot;People&quot;&gt;People &amp;amp;amp; Blogs&lt;/option&gt;
&lt;option value=&quot;News&quot;&gt;News &amp;amp;amp; Politics&lt;/option&gt;
&lt;option value=&quot;Entertainment&quot;&gt;Entertainment&lt;/option&gt;
&lt;option value=&quot;Education&quot;&gt;Education&lt;/option&gt;
&lt;option value=&quot;Howto&quot;&gt;Howto &amp;amp;amp; Style&lt;/option&gt;
&lt;option value=&quot;Nonprofit&quot;&gt;Nonprofit &amp;amp;amp; Activism&lt;/option&gt;
&lt;option value=&quot;Tech&quot;&gt;Science &amp;amp;amp; Technology&lt;/option&gt;
&lt;/select&gt;
&lt;label for=&quot;title&quot;&gt;Title&lt;/label&gt;
&lt;input id=&quot;title&quot; name=&quot;title&quot; type=&quot;text&quot;&gt;
&lt;label for=&quot;description&quot;&gt;Description&lt;/label&gt;
&lt;textarea id=&quot;description&quot; name=&quot;description&quot; rows=&quot;5&quot;&gt;&lt;/textarea&gt;
&lt;label for=&quot;keywords&quot;&gt;Kewords (use comma , to separate)&lt;/label&gt;
&lt;input id=&quot;keywords&quot; name=&quot;keywords&quot; value=&quot;&quot; type=&quot;text&quot;&gt;
&lt;br class=&quot;clr&quot; /&gt;
&lt;input value=&quot;Next -&gt; choose video&quot; name=&quot;add&quot; type=&quot;submit&quot; /&gt;
&lt;/form&gt;
</pre>
<p>Create upload.php</p>
<pre class="brush: php">

&lt;?php

if(isset($_POST[&#039;add&#039;],$_POST[&#039;videoCategory&#039;],$_POST[&#039;title&#039;],$_POST[&#039;description&#039;]))
{
//add the video meta data to session
$_SESSION[&#039;vidmeta&#039;][&#039;category&#039;] = $_POST[&#039;videoCategory&#039;];
$_SESSION[&#039;vidmeta&#039;][&#039;title&#039;] = $_POST[&#039;title&#039;];
$_SESSION[&#039;vidmeta&#039;][&#039;description&#039;] = $_POST[&#039;description&#039;];
$_SESSION[&#039;vidmeta&#039;][&#039;keywords&#039;] = $_POST[&#039;keywords&#039;];

//application id change this to our applicationId
$applicationId = &#039;onnepalvideosite&#039;;
//client id change this to our own client id
$clientId = &quot;ytapi-xxxxxx-xxxx-xxxxx&quot;;
//developer key change this to your own key
$developerKey = &quot;xxxxxxx-xxxxxxx-xxxxxxxxx-xxxxxxx&quot;;
//include zend loader
require_once(&#039;Zend/Loader.php&#039;); // the Zend dir must be in your include_path
//include youtube class
Zend_Loader::loadClass(&#039;Zend_Gdata_YouTube&#039;);
//include the client login class
Zend_Loader::loadClass(&#039;Zend_Gdata_ClientLogin&#039;);
//Client login
$authenticationURL= &#039;https://www.google.com/youtube/accounts/ClientLogin&#039;;
$httpClient = Zend_Gdata_ClientLogin::getHttpClient(
$username = &#039;your username here&#039;,
$password = &#039;our password here&#039;,
$service = &#039;youtube&#039;,
$client = null,
$source = &#039;onnepal&#039;, // a short string identifying your application
$loginToken = null,
$loginCaptcha = null,
$authenticationURL);

$yt = new Zend_Gdata_YouTube($httpClient, $applicationId, $clientId, $developerKey);
// create a new VideoEntry object
$myVideoEntry = new Zend_Gdata_YouTube_VideoEntry();

$myVideoEntry-&gt;setVideoTitle($_POST[&#039;title&#039;]);
$myVideoEntry-&gt;setVideoDescription($_POST[&#039;description&#039;]);
// The category must be a valid YouTube category!
$myVideoEntry-&gt;setVideoCategory($_POST[&#039;videoCategory&#039;]);

// Set keywords. Please note that this must be a comma-separated string
// and that individual keywords cannot contain whitespace
$myVideoEntry-&gt;SetVideoTags($_POST[&#039;keywords&#039;]);

$tokenHandlerUrl = &#039;http://gdata.youtube.com/action/GetUploadToken&#039;;
$tokenArray = $yt-&gt;getFormUploadToken($myVideoEntry, $tokenHandlerUrl);
$tokenValue = $tokenArray[&#039;token&#039;];
$postUrl = $tokenArray[&#039;url&#039;];
$nextUrl = &#039;http://www.yoursite.com/yt.php&#039;;
print &lt;&lt;&lt; END
&lt;br /&gt;&lt;form action=&quot;${postUrl}?nexturl=${nextUrl}&quot;
method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;&gt;
&lt;input name=&quot;file&quot; type=&quot;file&quot;/&gt;
&lt;input name=&quot;token&quot; type=&quot;hidden&quot; value=&quot;${tokenValue}&quot;/&gt;
&lt;input value=&quot;Upload Video File&quot; type=&quot;submit&quot; /&gt;
&lt;/form&gt;
END;
}
?&gt;
</pre>
<p>This code takes the category, title, description and keywords from the form and generates a form to upload video to youtube. You can then upload video to youtube using the form.<br />
Next make yt.php file which is the $nexturl file, $nexturl is the location to which youtube will redirect after the upload is complete. YouTube appends <code>id</code> and <code>status</code> parameters to the URL as shown in the following example</p>
<pre>http://www.yoursite.com/yt.php?status=200&amp;id=JPF-DXF7hzc</pre>
<p>Afterou get the youtube video id in your yt.php file you can add it to your own database to show videos in your site. You can do anything you wish with the variables you get through yt.php.I hope it will be help ful to all wishing to use youtube apis to upload video.</p>
<p>This can also be implemented to phpizabi sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2009/04/15/using-youtube-api-to-upload-videos-from-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>toksta chat integration to your website [phpizabi, socialnetwork]</title>
		<link>http://blog.yalamber.com/2009/03/20/toksta-chat-integration-to-your-website-phpizabi-socialnetwork/</link>
		<comments>http://blog.yalamber.com/2009/03/20/toksta-chat-integration-to-your-website-phpizabi-socialnetwork/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 16:41:07 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[phpizabi]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=137</guid>
		<description><![CDATA[I was looking for a decent chat script and i found much better hosted solution toksta. It&#8217;s a hosted chat aplication. You can add instant chat messenger in your site with a couple of&#160; lines of codes. I just installed &#8230; <a href="http://blog.yalamber.com/2009/03/20/toksta-chat-integration-to-your-website-phpizabi-socialnetwork/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was looking for a decent chat script and i found much better hosted solution toksta. It&#8217;s a hosted chat aplication. You can add instant chat messenger in your site with a couple of&nbsp; lines of codes. I just installed it in phpizabi site and my custom script site at www.visualthailand.com and www.kiratisaathi.com You can find more information at www.toksta.com<br mce_bogus="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2009/03/20/toksta-chat-integration-to-your-website-phpizabi-socialnetwork/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Socialnetwork platforms in php</title>
		<link>http://blog.yalamber.com/2008/11/26/socialnetwork-platforms-in-php/</link>
		<comments>http://blog.yalamber.com/2008/11/26/socialnetwork-platforms-in-php/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 15:51:22 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[phpizabi]]></category>
		<category><![CDATA[socialnetwork]]></category>
		<category><![CDATA[platforms]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=81</guid>
		<description><![CDATA[socialnetwork is the most popular destination for the netizens. Today most of the people spend time on socialnetwork like facebook, hi5, linkedin, myspace. Many people also want to build there own social network which focus on special subject matter of &#8230; <a href="http://blog.yalamber.com/2008/11/26/socialnetwork-platforms-in-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>socialnetwork is the most popular destination for the netizens. Today most of the people spend time on socialnetwork like facebook, hi5, linkedin, myspace. Many people also want to build there own social network which focus on special subject matter of their interest. In building such network, there are many platforms available today to help you build your own social network out of the box. The most preferred programming language today in php for the web applications. So i will be mentioning only platforms based in php and mysql. There are also online webapplications available like ning, and kickapps which help you build socialnetwork. you don&#8217;t need to get hosting or domain name. you can get the socialnetwork just by filling out some form. But as these don&#8217;t provide much flexibility i willnot be focusing on such services.</p>
<p>Below are some of the platform i have reviewed and will recommend you to try it out.</p>
<ol>
<li>socialengine</li>
<p>-Of all the platforms i find this one as a real platform of choice, It&#8217;s a total socialnetowk out of the box.  But&#8217;s it&#8217;s not a free, it costs $250 for core and $40 each for the plugins. Once you get the socialengine installed and go through it&#8217;s codes you can start developing your socialnetwork. I recommed this as the best platform. The tamplating system used is smarty so you can easily change the look and feel of your site. you can go to the site <a title="socialengine" href="http://socialengine.net" target="_blank">here</a></p>
<li>phpizabi</li>
<p>-The easiest to modify socialnetwork framework. Specially theme designing is easy with this socialnetwork framework. It&#8217;s free and opensource framework. But was regarded as the looser in the socialnetwork framework battle due to the fact that, it could not handle more users. Scalability was the issue with this framework. But I personally liked this framework. Cleanely coded, own theme engine, easy to modify was the pros of this framework. Why i mention this framework here is because with some modifications we can make it work better and make a robust social network out of it. It just need some rehaul in the coding and it can handle everything needed for the socialnetwork. To go to the site <a href="http://phpizabi.net">click here</a></p>
<li>boonex dolphin</li>
<p>-The socialnetwork framework with lot&#8217;s of features. They have reay done good job in their latest releases. It&#8217;s soon getting pace in it&#8217;s development and they have also announced of their future releases they are working on and they hype that it is going to be the best choice among all other. I hope to get the releases soon. <a href="http://boonex.com">click here</a></p>
<li>phpfox</li>
<p>-The most popular platform i think. It costs $300 for full liscence. With it you get 6 month of support and upgrades. There are several modules available for this platform. Installation and modification service is also available in the site. It&#8217;s also a out of the box socialnetwork platform <a href="http://phpfox.com">click here</a></ol>
<p>There are many platforms available for socialnetwork. you can also use joomla, wordpress, drupal to build a socialnetwork, but the best will be to start coding your own custom platform so that you can make it work as you want. As for other who want to make their own socialnetwork rapidly above are the platforms they should consider.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2008/11/26/socialnetwork-platforms-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>phpizabi contact and gallery db based</title>
		<link>http://blog.yalamber.com/2008/09/13/phpizabi-contact-and-gallery-db-based/</link>
		<comments>http://blog.yalamber.com/2008/09/13/phpizabi-contact-and-gallery-db-based/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 16:58:56 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[phpizabi]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=73</guid>
		<description><![CDATA[Hello, Any one interested in getting phpizabi contact and gallery converted to database based. I have done this and I want to sell it. Any one willing to buy it can contact me. The price is minimal. thanks]]></description>
			<content:encoded><![CDATA[<p>Hello, Any one interested in getting phpizabi contact and gallery converted to database based. I have done this and I want to sell it. Any one willing to buy it can contact me. The price is minimal. thanks</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2008/09/13/phpizabi-contact-and-gallery-db-based/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Changing unpk/pk function to database based in phpizabi</title>
		<link>http://blog.yalamber.com/2008/09/04/form-unpk-pk-to-db-based/</link>
		<comments>http://blog.yalamber.com/2008/09/04/form-unpk-pk-to-db-based/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 10:42:58 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[phpizabi]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=51</guid>
		<description><![CDATA[ok here is some ideas to do it. I have done it. But i don&#8217;t use phpizabi any more. I have developed my own script. And i had transferred the users, contacts, user gallery to my new script using this &#8230; <a href="http://blog.yalamber.com/2008/09/04/form-unpk-pk-to-db-based/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>ok here is some ideas to do it. I have done it. But i don&#8217;t use phpizabi any more. I have developed my own script. And i had transferred the users, contacts, user gallery to my new script using this method so it can be used by you to convert the phpizabi contact, gallery system to database based.<br />
Below is how databse structure will be like for contact and gallery system:</p>
<pre class="brush: sql">
CREATE TABLE IF NOT EXISTS `phpizabi_contact` (
`id` int(9) NOT NULL auto_increment,
`user` int(9) NOT NULL,
`friend` int(9) NOT NULL,
`date` int(32) NOT NULL,
`is_blocked` tinyint(1) NOT NULL default &#039;0&#039;,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM ;

CREATE TABLE IF NOT EXISTS `phpizabi_contact_request` (
`id` int(9) NOT NULL auto_increment,
`for_user` int(9) NOT NULL,
`from_user` int(9) NOT NULL,
`date` int(32) NOT NULL,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM ;

-- --------------------------------------------------------

--
-- Table structure for table `phpizabi_gallery`
--

CREATE TABLE IF NOT EXISTS `phpizabi_gallery` (
`id` int(11) NOT NULL auto_increment,
`user` int(10) NOT NULL default &#039;0&#039;,
`img` varchar(100) NOT NULL default &#039;0&#039;,
`date` int(32) NOT NULL,
`album_id` int(32) NOT NULL default &#039;0&#039;,
`title` varchar(250) NOT NULL default &#039;&#039;,
`description` longtext NOT NULL,
`views` int(10) NOT NULL default &#039;0&#039;,
`comments` int(10) NOT NULL default &#039;0&#039;,
`rating` float NOT NULL default &#039;0&#039;,
`votes` int(11) NOT NULL default &#039;0&#039;,
`is_mainpicture` tinyint(1) NOT NULL default &#039;0&#039;,
PRIMARY KEY `id` (`id`),
FULLTEXT KEY `title` (`title`,`description`)
) ENGINE=MyISAM ;

CREATE TABLE IF NOT EXISTS `phpizabi_gallery_album` (
`id` int(11) NOT NULL auto_increment,
`user` int(10) NOT NULL default &#039;0&#039;,
`date` int(64) NOT NULL default &#039;0&#039;,
`cover_img` varchar(64) NOT NULL,
`album_name` varchar(20) NOT NULL default &#039;&#039;,
`album_description` text NOT NULL,
PRIMARY KEY `id` (`id`),
FULLTEXT KEY `album_name` (`album_name`,`album_description`)
) ENGINE=MyISAM ;
</pre>
<p>Now to load the contents of the users from the old phpizabi database to new tables we can use the following script.<br />
Inserting pictures to new gallery table.</p>
<pre class="brush: php">
$sql = myQ(&quot;SELECT `id`,`pictures`, `username` FROM `[x]users`&quot;);
while($row = myF($sql)){
$pictures = unpk($row[&quot;pictures&quot;]);
if (!is_array($pictures)) $pictures = array();

foreach ($pictures as $pic) {
myQ(&quot;
INSERT INTO `[x]gallery` (`user`,`img`,`date`,`title`,`description`,`is_mainpicture`)
VALUES
(&#039;{$row[&quot;id&quot;]}&#039;,&#039;{$pic[&quot;FILE&quot;]}&#039;,&#039;&quot;.time().&quot;&#039;,&#039;{$pic[&quot;NAME&quot;]}&#039;,&#039;{$pic[&quot;DESCRIPTION&quot;]}&#039;,&#039;{$pic[&quot;MAIN&quot;]}&#039;)
&quot;);
}
}
</pre>
<p>Inserting contacts to new table:</p>
<pre class="brush: php">
$sql = myQ(&quot;SELECT `id`,`contacts` FROM `[x]users`&quot;);
while($row = myF($sql)){
$contacts = unpk($row[&quot;contacts&quot;]);
if (!is_array($contacts)) $contacts = array();

foreach ($contacts as $groupName =&amp;amp;amp;gt; $usersArray) {

if (is_array($usersArray)) foreach ($usersArray as $userArrayKey =&amp;amp;amp;gt; $userEntity) {
myQ(&quot;
INSERT INTO `[x]contact` (`user`,`friend`,`date`)
VALUES
(&#039;{$row[&quot;id&quot;]}&#039;,&#039;{$userEntity}&#039;,&#039;&quot;.time().&quot;&#039;)
&quot;);

}
}
</pre>
<p>This should now transfer all the contacts and gallery pictures to the new table. I think i have covered the main part where you were confused about. After you get the informations in a table. You can code php to function with contact and gallery system. i hope it will be helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2008/09/04/form-unpk-pk-to-db-based/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>is phpizabi back??</title>
		<link>http://blog.yalamber.com/2008/07/13/is-phpizabi-back/</link>
		<comments>http://blog.yalamber.com/2008/07/13/is-phpizabi-back/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 09:58:30 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[phpizabi]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=39</guid>
		<description><![CDATA[I just saw an security fix update at www.phpizabi.net posted on july,9th. What it does is provide security against the attack used in comment form to reveal other user sensitive informations. The below code protects you from that attack at &#8230; <a href="http://blog.yalamber.com/2008/07/13/is-phpizabi-back/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just saw an security fix update at www.phpizabi.net posted on july,9th. What it does is provide security against the attack used in comment form to reveal other user sensitive informations. The below code protects you from that attack at line 75:</p>
<pre class="brush: php">

// SQL INJECTIONS / XSS HACKS PROTECTION //////////////////////////////////////////////
$entities = array(&quot;;&quot;=&gt;&quot;&amp;amp;#059;&quot;, &quot;\&quot;&quot;=&gt;&quot;&amp;amp;quot;&quot;, &quot;&#039;&quot;=&gt;&quot;&amp;amp;#039;&quot;, &quot;&lt;&quot;=&gt;&quot;&amp;amp;lt;&quot;, &quot;&gt;&quot;=&gt;&quot;&amp;amp;gt;&quot;, &quot;\\&quot;=&gt;&quot;&amp;amp;#092;&quot;, &quot;^&quot;=&gt;&quot;&amp;amp;#094;&quot;, &quot;{&quot;=&gt;&quot;&amp;amp;#123;&quot;, &quot;}&quot;=&gt;&quot;&amp;amp;#125;&quot;);

if (isset($_POST)) foreach($_POST as $var =&gt; $val)
if (!is_array($val) and substr($var, 0, 1) != &quot;_&quot;)
$_POST[$var] = trim(strtr(stripslashes($val), $entities));

if (isset($_GET)) foreach($_GET as $var =&gt; $val)
if (!is_array($val) and substr($var, 0, 1) != &quot;_&quot;)
$_GET[$var] = trim(strtr(stripslashes($val), $entities));

unset ($var, $val, $entities);
</pre>
<p>I hope phpizabi will be back soon and become stronger. Let&#8217;s hope for it as it was the best script i have ever used.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2008/07/13/is-phpizabi-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mundhum.com released</title>
		<link>http://blog.yalamber.com/2008/06/06/mundhumcom-released/</link>
		<comments>http://blog.yalamber.com/2008/06/06/mundhumcom-released/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 06:29:45 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[phpizabi]]></category>
		<category><![CDATA[mundhum]]></category>
		<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=29</guid>
		<description><![CDATA[This is a phpbb3 based site. In this site, I have disabled the default registration and account management system of phpbb3 and provided access to users from kiratisaathi.com which is a phpizabi based site. I have changed some theme of &#8230; <a href="http://blog.yalamber.com/2008/06/06/mundhumcom-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a phpbb3 based site. In this site, I have disabled the default registration and account management system of phpbb3 and provided access to users from kiratisaathi.com which is a phpizabi based site. I have changed some theme of default prosilver to match the look of my site.</p>
<p>The tutorials i got useful for developing this site are linked below:</p>
<p><a href="http://www.startrekguide.com/community/viewtopic.php?f=50&amp;t=4576&amp;start=0&amp;st=0&amp;sk=t&amp;sd=a&amp;sid=007dc0848e3943ff58e8a2410f83fae8" target="_blank">How to integrate phpbb3 template, session and other system to your site.</a></p>
<p>and  <a href="http://polr.co.uk/online-marketing/index.php/integration-with-phpbb3-forum-system/" target="_blank">Integrating with phpbb3 forum system</a></p>
<p>These tutorials were helpful for me to integrate the users from kiratisaathi.com(phpizabi) to mundhum.com(phpbb3). As it provides a useful class aswell. Since the password hashing is different in phpizabi and phpbb3 it was difficult to integrate both system, but thanks to this tutorial it got me working someway out.</p>
<p>visit this site at <a href="http://www.mundhum.com" target="_blank">www.mundhum.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2008/06/06/mundhumcom-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kiratisaathi.com in new look and features</title>
		<link>http://blog.yalamber.com/2007/12/04/kiratisaathicom-in-new-look-and-features/</link>
		<comments>http://blog.yalamber.com/2007/12/04/kiratisaathicom-in-new-look-and-features/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 01:59:22 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[phpizabi]]></category>
		<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=13</guid>
		<description><![CDATA[Kiratisaathi.com is updated with new look and features check them out. www.kiratisaathi.com]]></description>
			<content:encoded><![CDATA[<p>Kiratisaathi.com is updated with new look and features check them out.</p>
<p><a href="http://www.kiratisaathi.com" title="kiratisaathi" target="_blank">www.kiratisaathi.com </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2007/12/04/kiratisaathicom-in-new-look-and-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>scrapbook mod for phpizabi</title>
		<link>http://blog.yalamber.com/2007/11/08/scrapbook-mod-for-phpizabi/</link>
		<comments>http://blog.yalamber.com/2007/11/08/scrapbook-mod-for-phpizabi/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 17:51:22 +0000</pubDate>
		<dc:creator>yalamber</dc:creator>
				<category><![CDATA[phpizabi]]></category>

		<guid isPermaLink="false">http://yalamber.com/?p=9</guid>
		<description><![CDATA[Scrapbook mod for phpizabi provides scrap feature in your phpizabi site, something similar to orkut scrapbook. try it out Cost: free download]]></description>
			<content:encoded><![CDATA[<p>Scrapbook mod for phpizabi provides scrap feature in your phpizabi site, something similar to orkut scrapbook. try it out</p>
<p>Cost: free</p>
<p><a href="http://yalamber.com/wp-content/uploads/2007/11/scrapbook.zip" title="scrapbookmod">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.yalamber.com/2007/11/08/scrapbook-mod-for-phpizabi/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
