How can you now access the relative coordinates of the mouse click?
An HTML form contains this form element:
<input type=”image” name=”myImage” src=”image.png” />
The user clicks on the image to submit the form. How can you now access the relative coordinates
of the mouse click?
Which of the following statements is correct?
Which of the following statements is correct?
Which design pattern should you use for this application?
You are creating an application that generates invoices in a variety of formats, including PDF,
ODS and HTML. Each of these formats is represented as a PHP class in your application. While
some of the operations can be performed on all of the different formats (such as saving and
loading), other operations may be specific to one or two of the formats (such as setting as read
only). Which design pattern should you use for this application?
what is the value of $_POST[‘accept’]?
The following form is loaded in a browser and submitted, with the checkbox activated:
<code>
<form method=”post”>
<input type=”checkbox” name=”accept”>
<form>
</code>
In the server-side PHP code to deal with the form data, what is the value of $_POST[‘accept’]?
Which methods can be used to overload object properties?
Which methods can be used to overload object properties? (Choose 2)
What super-global should be used to access information about uploaded files via a POST request?
.What super-global should be used to access information about uploaded files via a POST
request?
What is the function of backtick (`) characters in PHP?
What is the function of backtick (`) characters in PHP?
Which constant must be passed as the second argument to htmlentities() to convert single quotes (‘) to H
Which constant must be passed as the second argument to htmlentities() to convert single quotes
(‘) to HTML entities?
which access modifier in PHP 5 is equivalent to "var"?
You want to run the following PHP 4 code with PHP 5. In the following example, which access
modifier in PHP 5 is equivalent to “var”?
classTest {
var$tester;
}
Webservicesare primarily meant to support?
Webservicesare primarily meant to support?