Latest Answer: PHP support the Multilevel inheritance Not a multiple inheritance. For Example: class A{ function hello(); } // This is possible. class B extends A{ function helloB(); ...
Latest Answer: Notify URL is used to just notify the status while processing.Return URL is used to return after processing .Hoping this is right :) ...
Latest Answer: MySQL 5.1 supports the following storage engines:
MyISAM
InnoDB
Memory
Merge
Archive
Federated
NDB
CSV
Blackhole
http://dev.mysql.com/doc/refman/5.1/en/storage-engine-overview.html
...
Latest Answer: The Zend Engine is an open-source scripting engine, ...
Latest Answer: GETHEADPOSTPUTDELETETRACECONNECTOPTIONSREF: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html ...
Q1: Describe the process from a users web browser, to the web-server and back again.Q2: How would you check that a string is a palindrome?*hint* using only one statement.Q3: What's the maximum size of integral numbers in PHP? How would you manipulate very large numbers? (e.g. 8+ billion)Q4: What is 'htmlentities' and it's relationship with preventing XSS attacks/vulnerabilities?Q5: Describe the differences between the object models in PHP 4 and PHP 5.
Latest Answer: Yes, Php supports Inheritance.Lets go for an example,Class Pay{ var $Amt=10; var $M=""; Function CheckAmt($Amt){ ...
Latest Answer: Three are three types of errors:1. Notices: These are trivial, non-critical errors that PHP encounters while executing a script - for example, accessing a variable that has not yet been defined. By default, such errors are not displayed to the user at ...
Latest Answer: Some special characters in PHP like, single quote( ' ), double quote( " ), amperson ( & ) etc. are escape by slash its called magic quotes. Its useful for beginner programmer. ...
Latest Answer: if statement can be used when much more conditions need to check. where as switch stmt can be used when we need to compare a single expression with various options.Ex: if(studentMarks>70){echo "Gread A";}elsif(studentMarks>60){echo "Gread ...
View page << Previous 1 2 3 [4] 5 6 7 8 Next >>

Go Top