URGENT: Multiple IT roles required for Sydney, Australia Seacombe Heights, SA I need multiple resources within IT: Software developer with .Net and full stack development experience Software developer with Java/Camel …
PHP
-
- Interview Questions and AnswersPHPTechnical Interview Questions and Answers
PHP Interview questions and Answers For Graduates Part-3
by Sby S21. How can we encrypt the username and password using php? You can encrypt a password with the following Mysql>SET PASSWORD=PASSWORD(“Password”); We can encode data using base64_encode($string) and can decode …
- Interview Questions and AnswersPHPTechnical Interview Questions and Answers
PHP Interview questions and Answers For Graduates Part-2
by Sby S11. What are encryption functions in PHP? CRYPT(), MD5()
- Interview Questions and AnswersPHPTechnical Interview Questions and Answers
PHP Interview questions and Answers For Graduates Part-1
by Sby S1. Who is the father of PHP ? Rasmus Lerdorf is known as the father of PHP.
- Interview Questions and AnswersPHPTechnical Interview Questions and Answers
PHP Interview Questions and Answers For Freshers part-5
by Sby S41.How can you sort an array? sort() − Sorts an array.
- Interview Questions and AnswersPHPTechnical Interview Questions and Answers
PHP Interview Questions and Answers For Freshers part-4
by Sby S31.How will you get environment variables in PHP? PHP provides a function getenv() to access the value of all the environment variables.
- Interview Questions and AnswersPHPTechnical Interview Questions and Answers
PHP Interview Questions and Answers For Freshers part-3
by Sby S21.What is the purpose of _METHOD_ constant? _METHOD_ − The class method name. (Added in PHP 5.0.0) The method name is returned as it was declared (case-sensitive).
- Interview Questions and AnswersPHPTechnical Interview Questions and Answers
PHP Interview Questions and Answers For Freshers part-2
by Sby S11.What are the rules for determine the “truth” of any value not already of the Boolean type? Here are the rules for determine the “truth” of any value not already …
- Interview Questions and AnswersPHPTechnical Interview Questions and Answers
PHP Interview Questions and Answers For Freshers part-1
by Sby S1.What is PHP? PHP is a recursive acronym for “PHP: Hypertext Preprocessor”. PHP is a server side scripting language that is embedded in HTML. It is used to manage dynamic …
-
Convert Date Format using PHP? Convert date format yyyy-mm-dd => dd-mm-yyyy its possible using strtotime() and date() function in PHP and below is the example: [PHP] $DateValue = “2016-01-05”; $newDate …