View Single Post
ישן 17-08-06, 10:45   # 7
Crayon
חבר פורום
 
מיני פרופיל
תאריך הצטרפות: Aug 2006
הודעות: 85

Crayon לא מחובר  

הינה דוגמא:

PHP קוד:
<?
include("config.php");
header('Content-Type: application/octetstream');
header('Pragma: no-cache');
header('Content-Disposition: filename="backup.sql"');
header('Expires: 0');

$data .= "#מאת: backup:\r\n";
$data .= "#טבלה: table:\r\n";
$result mysql_query("SELECT * FROM table");
while (
$a mysql_fetch_array($result)) {
        foreach (
$a as $key => $value) {
                
$a[$key] = addslashes($a[$key]);
        }
        
$data .= "INSERT INTO table VALUES ('$a[id]', '$a[x1]', '$a[x2]', '$a[x3]'); \r\n#סוף שאילתה.\r\n";
}
echo 
$data;
?>
  Reply With Quote