- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 13
- Posts with Downvotes
- 12
- Downvoting Members
- 2
35 Posted Topics
Re: ** 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 … | |
Re: * 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 … | |
Re: 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> … | |
Re: **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. | |
Re: 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; … | |
Re: 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 | |
Re: 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/ | |
Re: Try this query to find second highest salary. SELECT MAX(salary) From table_name WHERE salary < (SELECT Max(salary) FROM table_name); | |
Re: 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"; … | |
Re: value.toString().length; As per above code, We first have to convert our integer value to string for find it's length. | |
Re: 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> … | |
Re: 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); | |
Re: Please try this query : select column1,column2 from table_name | |
Re: 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 | |
Re: **I'm using SQL Server and used this function to get the format like dd-mm-yyyy.** select FORMAT(GETDATE(),'dd-MM-yyy') | |
Re: Try this query : select name,count(name) as Total from Table_name group by name | |
Re: I have tried but get an error **"Cannot define PRIMARY KEY constraint on nullable column in table Application"** in SQL Server 2018 | |
Re: 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) | |
Re: **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 … | |
Re: **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/ | |
Re: 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/ | |
Re: Please refer below link: [https://devrama.com/static/devrama-slider/example-transition-wave](https://devrama.com/static/devrama-slider/example-transition-wave) | |
Re: Please refer following links : https://html.com/tags/center/ https://www.w3schools.com/howto/howto_css_center_website.asp | |
Re: 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%; } | |
Re: 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/ | |
Re: 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 !** | |
Re: 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 … | |
Re: 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 | |
Re: **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 … | |
Re: *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 … | |
Re: 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; } | |
Re: > **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 … | |
Re: 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> | |
Re: 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 … |
The End.