LemonBarley Posted March 28, 2009 Share Posted March 28, 2009 As subjected, how to generate all DOMAINS in a excel file? is there already this addon? i cannot find it in the forums.... 0 Quote Link to comment Share on other sites More sharing options...
scurrell Posted March 28, 2009 Share Posted March 28, 2009 As subjected, how to generate all DOMAINS in a excel file? is there already this addon? i cannot find it in the forums.... Write a query against the domains table in the database. 0 Quote Link to comment Share on other sites More sharing options...
LemonBarley Posted March 29, 2009 Author Share Posted March 29, 2009 hmm. i did not know how to do it. is there a specific instruction? 0 Quote Link to comment Share on other sites More sharing options...
Giannis Posted April 1, 2009 Share Posted April 1, 2009 You can export the table from phpmyadmin i xcls format.... 0 Quote Link to comment Share on other sites More sharing options...
bear Posted April 1, 2009 Share Posted April 1, 2009 hmm. i did not know how to do it. is there a specific instruction? Depends on what you're trying to find. SELECT * FROM `tbldomains` That will return all of them. SELECT * FROM `tbldomains` WHERE `registrar` = 'Enom' Will return only Enom domains. To get them all as a CSV you can import into Excel, from phpMyAdmin: Choose the table "tbldomains" Click the export tab Choose CSV (export for Excel directly is less reliable) Leave the default settings Choose "Save as file" Click "go". Choose local save location. Open Excel find data -> import locate file....and so on. 0 Quote Link to comment Share on other sites More sharing options...
LemonBarley Posted April 2, 2009 Author Share Posted April 2, 2009 Thank you so much BEAR 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.