Feeds:
Posts
Comments

Archive for June, 2006

Q:- What do you mean by bitwise operators?
Ans: The bitwise operators act on the binary representation on their operands. Each operand is first turned into a binary representation of the value before operation.
Q:- Do these operators work only on numbers?
Ans: No, they work for numbers as well as strings but they vary in their treatment [...]

Read Full Post »

Interview Questions on PHP

Hey, I am back with some more questions on PHP. Enjoy!!
Q:- What is the difference between “GET” and “POST” methods?
Ans. Get and Post are methods used to send data to the server with the submission of the form. The default method is GET.
* The browser appends the data onto the url when GET method is [...]

Read Full Post »

Who would like to be the first!!

Just wondering!! While writing for the new post, suddenly clicked that after every post, the bottom line says “Smart suggestions are always welcome”, how the blog sites provide this facility. Means how anyone can add comments, can’t edit the posts, rate the post etc. I want to know at coding level. I am digging for [...]

Read Full Post »

Basic Questions on PHP

Hey all! glad to see the comment posted on my previous blog i.e. Templates With PHP by Mayank. As he demanded to say about some basics about PHP, here I am going to post some basic questions on PHP which will facilitate the beginners and also those preparing for interviews. Enjoy!!
Q:- What is the full [...]

Read Full Post »

Templates with PHP

PHP programmers several times find themselves in very irritating situation when the code gets mixed up with HTML code. It is very complex to handle the mixed up code, specially at the time of customization of web applications. The smart way of getting out of these situations is the use of Templates. By the use [...]

Read Full Post »