Posted by: ranacse05 on: May 20, 2008
Last day one of my friend came to me.He was facing a problem (he solved later).Here is his problem –
The Bangla/Unicode data become ?????? in his page.
I’m gonna tell u today step-by-step what u need to do if u wanna develop Bangla/Unicode based Web App.
#1 . First make the database with CHARACTER utf8 and [...]
Posted by: ranacse05 on: May 16, 2008
phpMyAdmin এর বাংলা ভার্সন রিলিজ হল । আমি ও জয় কাজটি করলাম । আমি অন্য কাজে ব্যাস্ত থাকায় বেশী সময় দিতে পারিনি । জয় বেশী সময় দিয়েছে । আজ phpMyAdmin থেকে মেইল পেলাম , ওরা ৩য় ভার্সন থেকে phpMyAdmin এর অন্যান্য ভাষার পাশাপাশি বাংলাকে ও রাখবে । কিন্তু যদি কেউ এখনি ব্যাবহার করতে চান তবে [...]
Posted by: ranacse05 on: May 14, 2008
Today one of my friend ask me how can he load the data automatically after a few secs . Let me make it clear.He want to do something which will help the user.The user dont have to refresh his/her page.It’ll refresh and update it self.
For this you need AJAX.Here is a little example of this.I [...]
Posted by: ranacse05 on: May 6, 2008
I was reading Hasin Bhai’s New book Object Oriented Programming with PHP5.In chapter 2 i got a nice example of OOP.Its a word counter.Its a nice tool actually and pretty little too.Here is that example.
<?
class WordCounter
{
const ASC=1; //you need not use $ sign before Constants
const DESC=2;
private $words;
function __construct($filename)
{
$file_content = file_get_contents($filename);
$this->words =
(array_count_values(str_word_count(strtolower
($file_content),1)));
}
public function count($order)
{
if [...]
Posted by: ranacse05 on: May 4, 2008
Version controlling is very important now.Almost all the developers (web app/desktop) have to know it.Subversion is software which helps us in version controlling.Who dont know what is Subversion please read this.
BTW i was looking a short and nice tutorial on subversion .But i didnt got any . Then Aman Bhai helps me to [...]
Posted by: ranacse05 on: May 1, 2008
Few days ago i was thinking how can i rewrite the url ? Then i ask phpxperts and they replay me that mod re_write can do that work.Then i was looking for some mod re_write example.And got a nice one.Here it is I’m shearing with u all.
so, what is mod_rewrite for?
Simply, mod_rewrite is used [...]
Recent Comments