MSBTE PHP Additional Important Questions
MSBTE PHP Additional Important Questions
- require(): Emits a fatal error if the file is not found, script stops.
require('fpdf.php');
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
Example:
class MyClass {
sort($numbers);
Example:
session_start();
$_SESSION["username"] = "JohnDoe";
echo $_SESSION["username"];
mysqli_query($conn, $sql);
mysqli_close($conn);
10. Explain the use of the explode() function in PHP.
$str = "apple,banana,cherry";