Dethman Posted July 26, 2008 Share Posted July 26, 2008 I do not have the Cpanel Access for one of my websites I was wandering if I could call everything using PHP? is there a way I could do so? thanx Brian Flores Link to comment https://forums.phpfreaks.com/topic/116681-how-do-i-dump-an-sql-db-to-a-webpage-when-you-only-have-sql-and-ftp-passwords/ Share on other sites More sharing options...
dezkit Posted July 26, 2008 Share Posted July 26, 2008 elaborate please Link to comment https://forums.phpfreaks.com/topic/116681-how-do-i-dump-an-sql-db-to-a-webpage-when-you-only-have-sql-and-ftp-passwords/#findComment-599928 Share on other sites More sharing options...
Dethman Posted July 26, 2008 Author Share Posted July 26, 2008 I need to get all of the SQL without having to go into PHPMYADMIN I have SQL DB Passwords and FTP is there any type of script that will dump the SQL onto like an HTML page so all I have to do is go to this php page and make a backup of SQL untill my new password gets in for my CPanel? Link to comment https://forums.phpfreaks.com/topic/116681-how-do-i-dump-an-sql-db-to-a-webpage-when-you-only-have-sql-and-ftp-passwords/#findComment-599932 Share on other sites More sharing options...
Lodius2000 Posted July 26, 2008 Share Posted July 26, 2008 try SELECT * FROM table_name ORDER BY id //assuming you have one then print each column in a foreach loop do that for each table and you will get the whole database, then you get to spend hours copy pasting it into a formatted file OR you could create a csv from the db and then it will dl into a useable format Link to comment https://forums.phpfreaks.com/topic/116681-how-do-i-dump-an-sql-db-to-a-webpage-when-you-only-have-sql-and-ftp-passwords/#findComment-599933 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.