Posts

Showing posts with the label Web Development

PHP :: Introduction to PHP

Image
পিএইচপি শিখতে যা যা সফটওয়ার থাকা দরকার আপনার পছন্দনীয় একটি ব্রাউজার। যেমন - Google Chrome, Mozila Firefox, Opera, ইত্যাদি। একটি কোড এডিটর। যেমন - Notepad++, Geany, Adobe Dreamweaver, Micromedia Dreamweaver, ইত্যাদি। একটি পিএইচপি সামঞ্জস্যপূর্ণ ওয়েব সার্ভার। লোকাল সার্ভারে কাজ করার জন্য বিভিন্ন প্যাকেজ ব্যবহার করতে পারেন। যেমন - XAMPP, WAMP, AMPPS, ইত্যাদি। আমরা মূলত XAMPP সফটোয়ারটি ব্যবহার করব। পিএইচপি শেখার পূর্বে যা জানা উচিত HTML/XHTML JavaScript পিএইচপি কি? পিএইচপি হচ্ছে PHP: Hypertext Preprocessor -এর একটি সংক্ষিপ্ত রুপ। পিএইচপি হল এএসপি মত একটি সার্ভার সাইড স্ক্রিপ্টিং ভাষা। পিএইচপি স্ক্রিপ্ট সার্ভারে সঞ্চালিত হয়। পিএইচপি অনেক ডাটাবেস সমর্থন করে। যেমন - MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, ইত্যাদি। আমরা আমাদের টিউটোরিয়ালে MySQL ব্যবহার করব। পিএইচপি হল একটি ওপেন সোর্স সফ্টওয়্যার। পিএইচপি বিনামূল্যে ডাউনলোড এবং ব্যবহার করা যায়।

Insertion Sort Algorithm

♣ PSEUDOCODE :: INSERTION-SORT(A) for j = 1 to A.length - 1 key = A[j] // Insert A[j] into the sorted sequence A[0 ... j-1]. i = j - 1 while i >= 0 and A[i] > key A[i + 1] = A[i] i = i - 1 A[i + 1] = key ♣ C / C++ Code :: void InsertionSort(int A[], int len) { int i, j, key; for(j = 1; j <= len-1; j++) { key = A[j]; i = j - 1; while(i >= 0 && A[i] > key) { A[i+1] = A[i]; i--; } A[i+1] = key; } } ♣ JAVA Code :: static void InsertionSort(int A[]) { int i, j, key; for (j = 1; j <= A.length - 1; j++) { key = A[j]; i = j - 1; while (i >= 0 && A[i] > key) { A[i + 1] = A[i]; i--; } A[i + 1] = key; } } ♣ PHP Code :: function InsertionSort($A, $len) { for($j=1; $j<=$len-1; $j++): $key = $A[$j]; ...

About css rules

Image
A CSS formatting rule consists of two parts—the selector and the declaration (or in most cases, a block of declarations). The selector is a term (such as p , h1 ,a class name, or an id) that identifies the formatted element, and the declaration block defines what the style properties are. In the following example, h1 is the selector, and everything that falls between the braces ( {} ) is the declaration block: h1 { font-size: 16 pixels; font-family: Helvetica; font-weight:bold; } An individual declaration consists of two parts, the property (such as font-family ) and value (such as Helvetica ). In the previous CSS rule, a particular style has been created for h1 tags: the text for all h1 tags linked to this style will be 16 pixels in size, Helvetica font, and bold. The style (which comes from a rule, or a collection of rules) resides in a place separate from the actual text it’s formatting—usually in an external style sheet, or in the head portion of an HTML document. ...

Free website builder

নিজের জন্য অথবা শখের বসে ওয়েব সাইট তৈরির জন্য 'ইউইসফটওয়েবসাইটবিল্ডার' খুবই জনপ্রিয় একটি সফটওয়্যার। ওয়েবসাইট তৈরিতে কোডের ব্যবহার ও টেমপ্লেটস তৈরির জটিল সমস্যা এড়াতে আপনিও ব্যবহার করতে পারেন এই সফটওয়্যার। www.ewisoft.com ঠিকানা থেকে খুব সহজে আপনি সফটওয়্যারটি বিনা মূল্যে ডাউনলোড করতে পারবেন।

What is css?

Cascading Style Sheets (CSS) is a collection of formatting rules that control the appearance of content in a web page. Using CSS styles to format a page separates content from presentation. The content of your page—the HTML code—resides in the HTML file, and the CSS rules defining the presentation of the code reside in another file (an external style sheet) or in another part of the HTML document (usually the head section). Separating content from presentation makes it much easier to maintain the appearance of your site from a central location because you don’t need to update every property on every page whenever you want to make a change. Separating content from presentation also results in simpler and cleaner HTML code, which provides shorter browser loading times, and simplifies navigation for people with accessibility issues (for example, those using screen readers). CSS gives you great flexibility and control over the exact appearance of your page. With CSS you can control many...