Zdravim,
vim že se to tu už řešilo, ale nenašel jsem tam odpověď na to co potřebuju vědět..
takže mám script a ten mi vygeneruje nějakej string do proměné..
ale jak tu proměnou dát do txt souborum
kterej by se pokud možno nikde neukládal, ale hned se stahoval...
tak jako v phpMyAdminovy
tohle jsem z něj vytáhl...
if (!$save_on_server) {
if ($asfile ) {
// Download
if (!empty($content_enc oding)) {
header('Content-Encoding: ' . $content_encoding);
}
header('Content-Type: ' . $mime_type);
header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT');
// lem9: Tested behavior of
// IE 5.50.4807.2300
// IE 6.0.2800.1106 (small glitch, asks twice when I click Open)
// IE 6.0.2900.2180
// Firefox 1.0.6
// in http and https
header('Content-Disposition: attachment; filename="' . $filename . '"');
if (PMA_USR_BROWSER_AGENT == 'IE') {
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
} else {
header('Pragma: no-cache');
}
} else {
// HTML
$backup_cfgServer = $cfg['Server'];
require_once('./libraries/header.inc.php');
$cfg['Server'] = $backup_cfgServer;
unset($backup_cfgServer);
echo "\n" . '<div align="' . $cell_align_left . '">' . "\n";
//echo ' <pre>' . "\n";
echo ' <form name="nofunction">' . "\n"
// remove auto-select for now: there is no way to select
// only a part of the text; anyway, it should obey
// $cfg['TextareaAutoSelect']
//. ' <textarea name="sqldump" cols="50" rows="30" onclick="this.select();" id="textSQLDUMP" wrap="OFF">' . "\n";
. ' <textarea name="sqldump" cols="50" rows="30" id="textSQLDUMP" wrap="OFF">' . "\n";
} // end download
}
vím že tam nějak figuruje především tohle:
header('Content-Encoding: ' . $content_encoding);
header('Content-Type: ' . $mime_type);
header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Content-Disposition: attachment; filename="' . $filename . '"');
ale z toho co bylo před tímhle jsem nijak nepochopil
jak přišli k tomu souboru a odkud se tahuje ..
název bych nějak zpatlal..ale prostě mi to nejde do hlavy :D
jak to celý funguje (nemyslím samozřejmě jenom tenhle kousek :D ) ?!!