/home/techb158/exp.abdallabala.com/application/autoload
Edit: /home/techb158/exp.abdallabala.com/application/autoload/Make.php (966B)
prepare($query);
$stmt->execute();
$result = $stmt->fetchAll(PDO::FETCH_ASSOC);
if ($result) {
header('Content-Type: text/csv');
header('Content-Disposition: attachment;filename=' . $filename);
if ($stmt->rowCount() > 0) {
$fp = fopen('php://output', 'w');
foreach ($result as $value) {
fputcsv($fp, $value);
}
return true;
} else {
return false;
}
fclose($fp);
} else {
return false;
}
}
public static function make_pdf($title, $hstring, $style, $html)
{
$html = <<