softdevsalon
Member
Is there a way to export all site registered with this format
SITENAME-CATEGORY-TOT_PV_OVERALL-ALEXA-RANK
What to do?
SITENAME-CATEGORY-TOT_PV_OVERALL-ALEXA-RANK
What to do?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Not with visiolist itself, no. We only export full sql in admin.
Also not using phpmyadmin, since it only does exports using columns from same table ( not cross table like you need ) as far as i know.
For that you need to write a custom mysql dump/export php script
May i ask for what reason you only need those values?
SELECT title, category, tot_pv_overall, alexa_rank FROM VL_sites sites, VL_stats stats WHERE sites.username = stats.username
Just had a look in phpmyadmin, and notices, actually you can export quite easily there
So go to phpmyadmin -> select your database -> click the "SQL" tab
In there you paste
Code:SELECT title, category, tot_pv_overall, alexa_rank FROM VL_sites sites, VL_stats stats WHERE sites.username = stats.username
When you run that code, it shows you the results sets, below that results you have a link called "Export".
Click that and will just export what you selected with your query ( you can csv or whatever you need )