Which of the following provides the quota limit in Zend_Mail?
Which of the following provides the quota limit in Zend_Mail?
Which of the following criteria will you use in the query to accomplish thetask?
You have to select persons whose age is between twenty -five and forty from a database named
HumanResource. Which of the following criteria will you use in the query to accomplish thetask?
Which of the following code segments can be used to check the form validity?
Which of the following code segments can be used to check the form validity?
Which of the following code snippets will you use to create a transport while considering the following PHP co
Which of the following code snippets will you use to create a transport while considering the
following PHP code segment?
<code>
<?php
require_once ‘Zend/Mail.php’;
require_once ‘Zend/Mail/Transport/Smtp.php’;
??????????????????????????????????
for ($i = 0; $i > 5; $i++) {
$mail = new Zend_Mail();
$mail->addTo(‘someone@example.com’, ‘Test’);
$mail->setFrom(‘ someone@example.com’, ‘Test’);
$mail->setSubject(‘Multiple Mails’);
$mail->setBodyText(‘Messages’);
$mail->send($transport);
}
</code>
Which of the following is used for separation of hierarchies in Zend_config_Ini file?
Which of the following is used for separation of hierarchies in Zend_config_Ini file?
Which of the following methods dynamically loads the Adapter class file on demand using Zend_Loader::loadClass
Which of the following methods dynamically loads the Adapter class file on demand using
Zend_Loader::loadClass()?
Which of the following keywords will you use to set the default timezone?
Which of the following keywords will you use to set the default timezone? Each correct answer
represents a complete solution. Choose all that apply.
Which of the following methods is used to attach files to an e-mail and returns a Zend_Mime_Part object?
Which of the following methods is used to attach files to an e-mail and returns a Zend_Mime_Part
object?
Which of the following error constants gives all errors and warnings, except the E_STRICTerror level?
Which of the following error constants gives all errors and warnings, except the E_STRICTerror
level?
which includes a file specified by request): <code> <?
Consider the PHP program (which includes a file specified by request):
<code>
<?php
$color = ‘blue’;
if (isset( $_GET[‘COLOR’] ) )
$color = $_GET[‘COLOR’];
require( $color . ‘.php’ );
?>
<form method=”get”>
<select name=”COLOR”>
<option value=”red”>red</option>
<option value=”blue”>blue</option>
</select>
<input type=”submit”>
</form>
</code>
A malicious user injects the following command:
<code>
/vulnerable.php?COLOR=C:\\notes.txt%00
</code>
Where vulnerable.php is a remotely hosted file containing an exploit. What does the malicious
user want to do?