Jump to content

this script wont running.


zgkhoo

Recommended Posts

 <?php
include 'config.php';
include 'opendb.php';

$tableName  = 'person';
$backupFile = 'backup/person.sql';
$query      = "SELECT * INTO OUTFILE '$backupFile' FROM $tableName";
$result = mysql_query($query);

include 'closedb.php';
?>

there is no *.sql file appear in my folder after i running this script,why?

thanks..

 

Link to comment
https://forums.phpfreaks.com/topic/75899-this-script-wont-running/
Share on other sites

 <?php
include 'config.php';
include 'opendb.php';

$tableName  = 'person';
$backupFile = '/backup/person.sql';
$query      = "SELECT * INTO OUTFILE '$backupFile' FROM $tableName";
$result = mysql_query($query);

include 'closedb.php';
?>

i change to this also cant,

wat right path u meant?

 

try a plain and siple query to check where is the default destination of your file

 

try to use static value and dont use folder or dir just a text name to see how it work and where it goes

 

plain and siple query ?? how?

static value and dont use folder??how?

 

sorry i m a newbie

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.