Strucutures of Females in defined by C programmer

Today, I’ve got a interesting email from one of my friend which contains the structure of female defined by a C programmer. This programmer did a research on female and defined their structure in C programming. Checkout these cool structures of females and have fun :-) .

Read more

Popularity: 5% [?]

Which is the best PHP framework ?

I’ve been asked a lot of times which is the best PHP framework. Well, it’s a very difficult question to answer this question and there are some pros and corns in each framework. So, today I would to hear your views via poll. Please let everybody know which is the best PHP framework among CakePHP, Symfony, Zend Framework, CodeIgniter and Seagull. So that, it will be easier for the PHP developer to choose right framework for the next project. And please post the comment, if you’ve something more to say.

Read more

Popularity: 14% [?]

Php function to validate two decimal places of a number

If you are looking for the validation of a number which contains only two decimal places. Means you want to accept the values like 0.21 or 1.34 or 12.55 or 445.66 as a input and throw an error when somebody enters the number like 0.2 or 4.678 from a text box. Here is a simple function for you in PHP which validates the number weather it contains exactly two decimal places or not.

Read more

Popularity: 13% [?]

Register Globals ( register_globals ) “on” security problem in PHP

Do you know what happend when register_globals is set to ON in php.ini?? When it is set to ON it registers Environment, GET, POST, COOKIE or Server variables as global variables i.e. you don’t need to write $_POST['username'] to access the posted ‘username’ variable you can simply use ‘$username’ to access the $_POST['username'].

Read more

Popularity: 9% [?]

How to return value from Ajax Function - Use synchronous request

Have you ever tried to return values from the Ajax function ? Well it might be sometime the cases when you might have to return the value got from the server to another function rather than updating the component.

Let’s try to return the values from the traditional Ajax function.
Read more

Popularity: 19% [?]

Next Page →