PHP Web Application Developer from Bangladesh

Multi Language Web Expert

Archive for the ‘PHP’ Category

How learn HTML & CSS easily? Tutorial – 2

HTML এর একটা বেসিক Structure আছে। যেটা সবাইকে অবশ্যই Follow করতে হবে।

বেসিক Structure টি নিন্মরুপঃ-

<html>

<head>

<title> এখানে টাইটেল লিখবেন যা ওয়েন ব্রাউজারের উপরে শো করবে। </title>

</head>

<body>

এখানে মূল পেইজটির যাবতীয় জিনিস লিখবেন

</body>

</html>

html ফাইল লিখার জন্য অবশ্যই আপনাকে html ট্যাগ দিয়ে শুরু করতে হবে। সেই সাথে এই ট্যাগ এর ক্লোজও দিতে হবে। এই দুই ট্যাগের মাঝে আপনাকে যাবতীয় html কোড লিখতে হবে। উপরের আমরা

(more…)

  • 0 Comments
  • Filed under: HTML, PHP
  • How to enable curl in XAMPP?

    Enable curl with XAMPP on Windows XP

    What is your Xampp version?

    If your viersion is >= 1.7.1 then follow the following instruction:-

    1. Open ..\xampp\php\php.ini
    2. Uncomment the following line on your php.ini file by removing the semicolon.
    ;extension=php_curl.dll
    3. Restart your apache server

    Otherwise follow following instruction:-

    (more…)

  • 1 Comment
  • Filed under: CURL, PHP
  • Alphabetical search using php

    Sometimes we have need alphabetical search or pagination. It is very much simple. How we will do it-
    1. At first we will make an array with all alphabetical character.
    <?php
    $allAlphabet = array(‘A’, ‘B’, ‘C’, ‘D’, ‘E’, ‘F’, ‘G’, ‘H’, ‘I’, ‘J’, ‘K’, ‘L’, ‘M’, ‘N’, ‘O’, ‘P’, ‘Q’, ‘R’, ‘S’, ‘T’, ‘U’, ‘V’, ‘W’, ‘X’, ‘Y’, ‘Z’);
    ?>

    2. Print/echo all alphabetical character sequentially using foreach loop
    <?php
    foreach($allAlphabet as $singleCharacter)
    {
    echo $singleCharacter;
    }
    ?>

    (more…)

  • 1 Comment
  • Filed under: PHP
  • Jabber Integration — Is it so tough?

    What is jabber:

    Jabber is an initiative to produce an open source, XML based instant messanging platform.

    Jabber is an API to provide instant messaging and presence functionality independent of data exchanged between entities. The primary use of Jabber is to give existing applications instant connectivity through messaging and presence features, contact list capabilities, and back-end services that transparently enrich the available functionality.

    Jabber began in early 1998 as an open source project to both enable and ease the construction of compatible IM clients.

    After two years of full-time development by a large group of individuals around the world:

    • The abstraction layer and all APIs are fully implemented.
    • The XML data types are well defined
    • Clients for all major platforms and environments are available or being developed.
    • The GPL[4]/LGPL[5] licensed Jabber Server is fully functional.
    • Numerous working server-side components (transports) exist or are in public development for popular services such as ICQ, AOL IM, Microsoft Messenger, Yahoo! Messenger, IRC, SMTP, RSS (news headlines), and more.

    How you work:

    (more…)

  • 0 Comments
  • Filed under: PHP, PHP API