Php Interview Question and Answers

9. What do the standard PHP delimiter tags look like?
  . . . .<?php
. . . . // your code here
. . . . ?>.
 
Your Name Your Email-ID
Your Answer
10. What do the script PHP delimiter tags look like?
  . . . .<script language="php">
. . . .// your code here
. . . .</script>.
 
Your Name Your Email-ID
Your Answer
11. What do the ASP PHP delimiter tags look like?
  . . . .<%
. . . .// your code here
. . . .%>
 
Your Name Your Email-ID
Your Answer
12. Which function would you use to determine the length of a string?
  The strlen() function returns the length of a string.
 
Your Name Your Email-ID
Your Answer
12345678910 Page 3 of 10