Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
32% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
13
Posts with Downvotes
12
Downvoting Members
2
4 Commented Posts
0 Endorsements

35 Posted Topics

Member Avatar for Sarah_27

** If you are looking for basic and free features, Google Analytics is a better option** while** if you are planning to drive deeper into the business Adobe Analytics is the option**. The basic site metric can be easily and instantly captured through Google Analytics while you need IT experts …

Member Avatar for AccuWeb Hosting
5
6K
Member Avatar for Edsion Thomas

* VPS actually stands for Virtual Private Server. It uses virtualization technology to provide you with dedicated (private) resources on a server with multiple users. * VPS hosting is usually chosen by website owners who have medium-level traffic that exceeds the limits of shared hosting plans but still don’t need …

Member Avatar for AccuWeb Hosting
-3
1K
Member Avatar for SabithaSri

Hello, here all you need to use the boostrap class ! your code is goes like this : <div class = "col-lg-12"> <div class="row"> <div class="col-lg-3"> <img></img> <h2></h2> <p></p> </div> <div class="col-lg-3"> <img></img> <h2></h2> <p></p> </div> <div class="col-lg-3"> <img></img> <h2></h2> <p></p> </div> <div class="col-lg-3"> <img></img> <h2></h2> <p></p> </div> </div> </div> …

Member Avatar for Sohaib_7
1
1K
Member Avatar for Zinavo

**Head :** head is the tag at the top of your page containing your meta-tags, styles, scripts and title. ** Header :** header tag contains information related to the title and heading related content which is display on web page.

Member Avatar for Dani
0
8K
Member Avatar for SimonIoa

Hello here is the code you needed: HTML: <div id="container"> <div id="leftSide"> </div> <div id="rightSide"> <div id="circle"> </div> </div> </div> CSS: #container{ width: 600px; float: left; padding: 0; margin: 0 auto; position:relative; } #leftSide{ width: 300px; height: 300px; float:left; background-color: blue; } #rightSide{ width: 300px; height: 300px; float:left; background-color: red; …

Member Avatar for ZoyaHall
1
3K
Member Avatar for Patiodude

Try this code : CREATE TABLE Example ( id int NOT NULL AUTO_INCREMENT PRIMARY KEY, name varchar(30) NOT NULL, age int );

Member Avatar for surveypacific
0
885
Member Avatar for ravi142

Try this query : select chat_msgs from user_chat where chat_from_id=2 and chat_to_id=10 order by chat_msgs desc limit 5

Member Avatar for Purvi_1
0
442
Member Avatar for abhi10kumar

You can use ***mysqldump*** option, then you can use ***--all-databases** * parameter. For more information refer the following link : https://linuxize.com/post/how-to-back-up-and-restore-mysql-databases-with-mysqldump/

Member Avatar for Purvi_1
0
369
Member Avatar for exotic_yuh18

Try this query to find second highest salary. SELECT MAX(salary) From table_name WHERE salary < (SELECT Max(salary) FROM table_name);

Member Avatar for Purvi_1
0
222
Member Avatar for jean_5

Try this following script to convert date to yyyy-mm-dd to mmm dd yyyy.. function formatDate(d) { var date = new Date(d); var month = new Array(); month[0] = "Jan"; month[1] = "Feb"; month[2] = "Mar"; month[3] = "Apr"; month[4] = "May"; month[5] = "Jun"; month[6] = "Jul"; month[7] = "Aug"; …

Member Avatar for Purvi_1
0
412
Member Avatar for AntonyRayan

value.toString().length; As per above code, We first have to convert our integer value to string for find it's length.

Member Avatar for Purvi_1
0
681
Member Avatar for Travis_4

Please try following code, hope this will help: <html> <head> <meta name="generator" content="HTML Tidy for Windows (vers 25 March 2009), see www.w3.org"> <script type="text/javascript"> function person(name, age) { this.name = name; this.age = age; } var bucky = new person("Bucky Roberts", 24); var Taylor = new person("Taylor Swift", 20); </script> …

Member Avatar for Purvi_1
0
191
Member Avatar for AntonyRayan

Try this code : const date1 = new Date('7/13/2010'); const date2 = new Date('7/18/2010'); const diffTime = Math.abs(date2 - date1); const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24)); alert(diffDays);

Member Avatar for Purvi_1
0
833
Member Avatar for 21303359
Member Avatar for caitlyndania

9 Best E-commerce Platform Options 1. Wix Stores – Simple, Beautiful, Affordable. 2. Squarespace. 3. Shopify – Best for Boutique Shops. 4. Volusion. 5. SiteBuilder – Best for Beginners. 6. BigCommerce – Best for Small Business. 7. Zen Cart. 8. OpenCart. 9. Magento

Member Avatar for nikitacod
2
3K
Member Avatar for Bhavini_2

**I'm using SQL Server and used this function to get the format like dd-mm-yyyy.** select FORMAT(GETDATE(),'dd-MM-yyy')

Member Avatar for anand9796
0
301
Member Avatar for wikit

Try this query : select name,count(name) as Total from Table_name group by name

Member Avatar for Purvi_1
0
319
Member Avatar for nimz143

I have tried but get an error **"Cannot define PRIMARY KEY constraint on nullable column in table Application"** in SQL Server 2018

Member Avatar for Purvi_1
0
309
Member Avatar for Lighterning

The mysqli_connect() function has 4 parameters, the 4th is the name of your database <?php $servername = "localhost"; $username = "root"; $password = "root"; $dbname = 'Something'; $conn = new mysqli($servername,$username,$password, $dbname); For understand it deeply please refer following link [https://www.php.net/manual/en/function.mysqli-connect.php](http://www.php.net/manual/en/function.mysqli-connect.php)

Member Avatar for Biiim
0
263
Member Avatar for Sherin Mathew

**CELLSPACING** controls the space between table cells. Although there is no official default, browsers usually use a default of 2. **CELLPADDING** sets the amount of space between the contents of the cell and the cell wall. The default is 1. *CELLPADDING is usually more effective than CELLSPACING for spreading out …

Member Avatar for Dani
0
279
Member Avatar for Ahmed_76

**Please refer following links:** https://www.w3schools.com/cpp/cpp_arrays.asp https://www.tutorialspoint.com/cplusplus/cpp_arrays.htm https://www.geeksforgeeks.org/arrays-in-c-cpp/

Member Avatar for Purvi_1
-1
244
Member Avatar for SimonIoa

Hello ! please refer following link may this will help you. https://benkaminski.com/web-development-blog/responsive-css3-html5-video-background-div-no-javascript-needed/

Member Avatar for Purvi_1
0
2K
Member Avatar for Ashley_16

Please refer below link: [https://devrama.com/static/devrama-slider/example-transition-wave](https://devrama.com/static/devrama-slider/example-transition-wave)

Member Avatar for Purvi_1
0
550
Member Avatar for DSLKeper

Please refer following links : https://html.com/tags/center/ https://www.w3schools.com/howto/howto_css_center_website.asp

Member Avatar for Purvi_1
0
493
Member Avatar for SimonIoa

Hi, please try this code: **HTML** <div> <img src="https://www.w3schools.com/images/picture.jpg"> </div> **CSS** div { width: 50px; height: 50px; } div img { height: 100%; width: 100%; }

Member Avatar for bollywood movie download
1
2K
Member Avatar for Troggs

Please refer following link which will help you to understand how to link HTML to CSS ! https://www.dummies.com/web-design-development/html5-and-css3/how-to-use-an-external-style-sheet-for-html5-and-css3-programming/

Member Avatar for Purvi_1
0
343
Member Avatar for guyinpv

Hello, please refer following link to copy or transtfer your data base fast [ https://dev.mysql.com/doc/refman/5.7/en/copying-databases.html](http://dev.mysql.com/doc/refman/5.7/en/copying-databases.html) **May this will help you !**

Member Avatar for Saudi_2
0
4K
Member Avatar for samertaha

The **“UI**” in UI design stands for “user interface.” The user interface is the graphical layout of an application. It consists of the buttons users click on, the text they read, the images, sliders, text entry fields, and all the rest of the items the user interacts with. This includes …

Member Avatar for Purvi_1
0
1K
Member Avatar for hiyatran

Hello, here is one usefull link which can help you ! https://www.geeksforgeeks.org/how-to-load-css-files-using-javascript/ Also check this stackoverflow issue : https://stackoverflow.com/questions/23441864/how-to-call-css-from-javascript

Member Avatar for Purvi_1
0
275
Member Avatar for Vin vin

**Structured Query language (SQL) pronounced as "S-Q-L" or sometimes as "See-Quel"is actually the standard language for dealing with Relational Databases. SQL is used to communicate with a database. SQL programming can be effectively used to insert, search, update, delete database records.** There are many best sites where you can learn …

Member Avatar for damonmoats
0
570
Member Avatar for davy_yg

*Hi ! if you want to apply css differently then you have to use custom css class instead of html tag to style your tables* For Example : ** HTML** <table class="order"> <tr> <th>Nama Produk</th> <th>Harga</th> <th>Jumlah Pembelian</th> <th>Tipe Produk</th> <th>Total</th> </tr> <tr> <th><input type="text" name="fname"></th> <td><input type="text" name="fname"></td> <td><input …

Member Avatar for Purvi_1
0
770
Member Avatar for Michael_93

try bellow code : **HTML: ** <div class = "first_div"></div> <div class = "second_div"></div> **CSS:** .first_div { border: 4px solid black; position: absolute; width: 500px; height: 200px; } .second_div { border: 4px solid black; position: relative; width: 212px; height: 130px; top: 30px; left: 240px; }

Member Avatar for Purvi_1
-1
705
Member Avatar for Prahlad4145

> **SVG** is a vector graphic format—based on XML and is used to display a variety of graphics on the Web and other environments. > > SVG documents are nothing more than simple plain text files that describe lines, curves, shapes, colors, and text. As it is human-readable, easily understood …

Member Avatar for Purvi_1
0
341
Member Avatar for Stefce

Try below code: <body> <canvas id="myCanvas" width="900"> Your browser does not support the HTML5 canvas tag.</canvas> <script> var c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.beginPath(); ctx.arc(100, 75, 50, 0, 2 * Math.PI); ctx.arc(250, 75, 50, 0, 2 * Math.PI); ctx.arc(400, 75, 50, 0, 2 * Math.PI); ctx.stroke(); </script> </body>

Member Avatar for anand9796
0
3K
Member Avatar for m.rahman1

As you are a begginer you first need to know what HTML is and what is stand for : HTML stands for Hyper Text Markup Language, is actually used to create the webpage and the content that it has, like the images and writing. For more i'm suggesting you following …

Member Avatar for Purvi_1
-3
1K

The End.