Multi Language Web Expert
19 Apr
HTML এর একটা বেসিক Structure আছে। যেটা সবাইকে অবশ্যই Follow করতে হবে।
বেসিক Structure টি নিন্মরুপঃ-
<html>
<head>
<title> এখানে টাইটেল লিখবেন যা ওয়েন ব্রাউজারের উপরে শো করবে। </title>
</head>
<body>
এখানে মূল পেইজটির যাবতীয় জিনিস লিখবেন
</body>
</html>
html ফাইল লিখার জন্য অবশ্যই আপনাকে html ট্যাগ দিয়ে শুরু করতে হবে। সেই সাথে এই ট্যাগ এর ক্লোজও দিতে হবে। এই দুই ট্যাগের মাঝে আপনাকে যাবতীয় html কোড লিখতে হবে। উপরের আমরা
12 Mar
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:-
11 Mar
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;
}
?>
8 Mar
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:
How you work: