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
Share on other sites

That script will basically export all the data from the person table and put into the person.sql file within the backup folder

 

What is happening when you run the script?

 

just the file wont appear ....i cant find it at all in my /htdoc folder

Link to comment
Share on other sites

shouldn't the file already exist before you can execute such queries? or maybe the file is created but instead in the sql folder

 

backup//person.sql

should be inside a folder called backup rite?

i cant see any "backup" folder after running this script.

 

Link to comment
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?

 

Link to comment
Share on other sites

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

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.