Here’s the SQL query for deleting all posts in Trash in WordPress: sql DELETE FROM wp_posts WHERE post_status = ‘trash’; This query will delete all… Read More →
View the information on usage of server resources on Plesk Go to Tools & Settings > Server Information. https://docs.plesk.com/en-US/obsidian/administrator-guide/statistics-and-monitoring/viewing-statistics.59249/
JavaScript For Loop
May 13, 2022
<h2>JavaScript For Loop</h2> <p id=”demo”></p> <script> const cars = [“BMW”, “Volvo”, “Saab”, “Ford”, “Fiat”, “Audi”]; let text = “”; for (let i = 0; i… Read More →
How To Create a Blurry Background Image with CSS
May 13, 2022
Create a Blurry Background Image with CSS /* The image used */ background-image: url(“photographer.jpg”); /* Add the blur effect */ filter: blur(8px); -webkit-filter: blur(8px); /* Full height */… Read More →
Responsive Topnav Example w3schools
May 13, 2022
Responsive Top Navigation (Bootstrap Styled) MyBrand Home News Contact About Bootstrap Responsive Nav Example Resize the browser window to see the navigation collapse into… Read More →
Mysql Insert into table values
May 13, 2022
SQL Statement INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode, Country) VALUES (‘Cardinal’,’Tom B. Erichsen’,’Skagen 21′,’Stavanger’,’4006′,’Norway’); Know more at – https://www.w3schools.com/sql/sql_insert.asp