View Single Post
Old 09-21-2006, 08:28 PM  
GrouchyAdmin
Now choke yourself!
 
GrouchyAdmin's Avatar
 
Industry Role:
Join Date: Apr 2006
Posts: 12,085
Make a PHP script and execute that on the webserver. That's how I finally got my data out of WebAir's shitty shared system.

Code:
<?php
$cmd = 'mysqldump -u=myuser -p=mypass dbname > dump.sql';

$n = (function_exists(passthru)) ?  passthru("$cmd") : exec("$cmd");
return $n;
?>
__________________
GrouchyAdmin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote