1. Question:What are the general language features of php? 

    Answer
    Practicality: It requires minimum  knowledge of programming.Power: It has the ability to interface with databases, form and create pages dynamically.Possibility: Developers are rarely bound to any single implementation solution.Price: It is open source software.






    1. Report
  2. Question:What are the encryption techniques in PHP? 

    Answer
    PHP implements the MD5 hash algorithm using the md5() function,
    eg : $encrypted_text = md5 ('password');






    1. Report
  3. Question:What is the use of "enctype" attribute in a html form? 

    Answer
    The enctype attribute determines how the form-data should be encoded when submitting it to the server. We need to set enctype as "multipart/form-data" when we are using a form for uploading files






    1. Report
  4. Question:Which functions are used to add file in a script? 

    Answer
    Thare are two functions are used to add file in a script
    1.The include()function
    2.The require() function






    1. Report
  5. Question:

    What are passing arguments by reference and passing arguments by value?

     

    Answer

    passing arguments by value:Means any changes made to those values within the scope of the function are ignored outside of the function.

    passing arguments by reference:Means any changes made to those values within the scope of the function are reflected outside of the function.







    1. Report
Copyright © 2025. Powered by Intellect Software Ltd