Jakir Hosan Zilon

    26-Jul-13 08:04:37 pm

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং php ধাপ 6 use this function getname return

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং PHP ধাপ-6 use $this: function get_name() { return $this->name; } ...

    Read More


    Jakir Hosan Zilon

    26-Jul-13 08:01:09 pm

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং php ধাপ 5 getter and setter function php class

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং PHP ধাপ-5 getter and setter function: <?php class people{ var $name; function set_name($new_name){ $this->name=$new_name; } function get_name(){ return $this->name; } } ?> ...

    Read More


    Jakir Hosan Zilon

    26-Jul-13 07:59:39 pm

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং php ধাপ 4 add method in class php class

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং PHP ধাপ-4 add method in class: <?php class people{ var $name; function set_name($new_name){ $this->name=$new_name; } function get_name(){ return $this->name; } } ?> ...

    Read More


    Jakir Hosan Zilon

    26-Jul-13 07:57:23 pm

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং php ধাপ 3 create property php class people var

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং PHP ধাপ-3 create property: <?php class people{ var name; } ?> ...

    Read More


    Jakir Hosan Zilon

    26-Jul-13 07:54:46 pm

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং php ধাপ 2 create php class php class people

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং PHP ধাপ-2 create php class: <?php class people{ } ?> ...

    Read More


    Jakir Hosan Zilon

    26-Jul-13 07:51:41 pm

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং php first created two php file index and

    23 ধাপে অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং PHP First created two php file.index.php and class_lib.php ...

    Read More


    Mohammad Towhidul Islam

    05-Jul-13 05:00:52 pm

    Remove values from array if you need to remove elements an array

    Remove Values from Array If you need to remove elements from an array that have a particular value(s) here’s a neat way of doing it without any looping: // our initial array $arr = Array("blue", "green", "red", "yellow", "green", "...

    Read More


    Mohammad Towhidul Islam

    06-Jun-13 12:20:03 pm

    Echo hello echo world

    echo "Hello"; echo "World"; ...

    Read More


    Mohammad Towhidul Islam

    17-May-13 12:16:10 pm

    Special character definitions for regular expression quote the next metacharacter match

    Quote the next metacharacter ^ Match the beginning of the line . Match any character (except newline) $ Match the end of the line (or before newline at the end) | Alternation () Grouping [] Character class * Match 0 or more times + Match 1 or more times ? Match 1 or 0 times {n} Match exactly n ti...

    Read More


First6789Last
8 of 9 pages
Copyright © 2025. Powered by Intellect Software Ltd