List of Online Ecommerce Store Providers

Sharing list of sites, apps which provide online store opening and selling online option of various types. While browsing internet, blogs, videos online I sometimes come across sites which provide such sites and apps. Would try to add them here and keep the list updated. Some services might not be available anymore or may have … Read more

MySQL Code for adding days, time to date column

Use following code to update a date column in MySQL table. One can add days, hours and more depending on the requirement. A fix date can be provided (like 2023-06-20) to which days can be added, current date can be used to add days, existing date_column value can also be used to add days, based on other column value like serial number or some number can be added.

using fix date

UPDATE table_name SET date_column= ‘2023-06-20’ + INTERVAL 2 DAY + INTERVAL 19 HOUR;

using current date

UPDATE table_name SET date_column=CURDATE() + INTERVAL 2 DAY + INTERVAL 19 HOUR;

using column date

UPDATE table_name SET date_column= date_column + INTERVAL 2 DAY + INTERVAL 19 HOUR;

using column value

UPDATE table_name SET date_column= ‘2023-06-20’ + INTERVAL column_name DAY + INTERVAL 19 HOUR;

List of online SEO Tools websites

Sharing list of sites which provide SEO tools of various types. While browsing internet, blogs, videos online I sometimes come across sites which provide SEO tools. Would try to add them here and keep the list updated. Some tools might not be available anymore or may have been removed from their site or the link … Read more

Facebook Quick links – a handy guide

Facebook is used very often and it is expanding even more. There are lot of features in facebook and new ones keep coming. Bringing list of links which are sometimes not easy to find on Facebook but can be accessed directly from here. For marketers who need to switch between different features would find this … Read more

What offers to offer online?

May be updated from time to time | Starting thoughts Offers, deals and coupons are available on many online shops aka websites aka web companies (webpanies). Offers, deals and coupons (ODC) vary from product to product, site to site, season to season. There are some dedicated websites which lists out such ODCs based on websites, … Read more

How Paytm can evolve with new Products

Paytm has many users. They are spread across various services as sellers, buyers, phone rechargers, bill payers, wallet users (senders and acceptors) and some others. With a large user base Paytm can evolve and get into new services. The new services could be Business Information provider like JustDial and Product/Service provider Nearby like Cab provider … Read more

Quick Cache code implementation in PHP for SEO

Making website quick and efficient to load helps in SEO. Good SEO means better ranking and more visitors. Google SEO believes in faster loading of websites as a plus point. How cache (caching pages or some part of a page) could help in making page load fast? When a webpage is requested, it executes codes … Read more

New Features of Whatsapp Messenger App

Whatsapp is coming up with new and new features very often. Most of them are very useful for many users which goes into billion+. Let us look at some features of whatsapp messenger app. Basic Features Send Text Message Send Image Add Contact Add Status Message Add Profile Image Edit profile image Remove profile image … Read more

Crowdsourced rating of Customers by e-commerce companies

COD (Cash on Delivery) is the key for selling in Indian scenario by e-commerce webpanies (web companies) and other online sellers along with some discount. Many times COD product is rejected by the customer. They don’t pay for it or don’t want it any more (before paying to delivery person) or are not available. Existing … Read more