- Website UI/UX
- Website Development
Web development that are relevant to you will depend on your skills, experience, and interests. If you are new to web development, I recommend starting with front-end development or web design. Once you have a good understanding of front-end development and web design, you can then decide if you want to specialize in a particular area, such as web application development, mobile app development, or web performance optimization.
- Mobile App Development
Native apps are developed specifically for a particular mobile platform, such as iOS or Android.
Web apps are developed using web technologies, such as HTML, CSS, and JavaScript.
- SEO
- Digital Marketing
[HowTo] Export All Your Visitors Comment Email In WordPress
In default WordPress comment your visitors need to input their email to leave a comment in your blog. And you can export those emails for whatever reasons you need. Probably you need to keep in touch, or just say hi, you name it. I just want to share a little trick to export those emails from database to a csv file.
Here is the php code to do that:
/* Author: Ankur Tiwari Website: http://www.snarscorp.com Disclaimer: This code is to export all your comentor's email to csv format. Feel free to use it. And i'm not responsible for any legal or ILEGAL activity use of this script. Use it with your own risk! */ $database_host="localhost"; //Your MySQL host, leave it to default if you don't understand what is it. $database_name=""; //Your MySQL database name $database_username=""; //Your MySQL database username $database_password=""; //Your MySQL database password //You don't have to change the rest unless you understand what you are doing. mysql_connect ($dbhost, $database_username, $database_password) or die("error");; mysql_select_db($database_name); $query = "SELECT DISTINCT `comment_author_email` , `comment_author` , `comment_author_url` FROM `wp_comments` WHERE `comment_approved`=1 AND `comment_type` != 'pingback' AND `comment_author_email` <> ''"; $csv_output = ''; $csv_output .= '"Name","Email","Website URL"'; $csv_output .= "\015\012"; $result = mysql_query($query); while($row = mysql_fetch_array($result)) { $csv_output .= '"'.$row[comment_author].'","'.$row[comment_author_email].'", "'.$row[comment_author_url].'"'; $csv_output .= "\015\012"; } //You cannot have the breaks in the same feed as the content. header("Content-type: application/vnd.ms-excel"); header("Content-disposition: csv; filename=email-export.csv"); print $csv_output; exit;
DISCLAIMER:This script is free to use and modified. And i don’t responsible for any legal or ILEGAL activity use of this script. Use it with your own risk!