
Sherin
Members-
Content Count
76 -
Joined
-
Last visited
Community Reputation
2 NeutralAbout Sherin
-
Rank
Newbie
Profile Information
-
Gender
Female
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
if you know about more information about ETL stored procedure like the basic to top how to start and how to use you should be follow the below link i hope u get more details from this link https://www.labkey.org/Documentation/wiki-page.view?name=etlStoredProcMSSQL
-
How to seperate 2 pictures in same row in Notepad++ (HTML)
Sherin replied to Cougary's topic in HTML/XHTML
If you want to separate two pictures in same row the Margin Property allow you to give space between two picture . Here is the code <html> <head> <title>IMAGE</title> </head> <body> <img src="/image/Screenshot_2.png" alt="old car" style="margin: 10px;width: auto;height:300;" > <img src="/image/Screenshot_1.png" alt="car1" style="margin: 10px;width: auto;height:300;" > </body> </html> I hope this will helps you. -
Follow the specificity rules https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity
-
If you have tried SELECT STR(39.776, 15, 2); So your result is 39.78
-
You can pass single quote ' ' in REQUEST_METHOD.
-
how do i hide a price until a customer logins in?
Sherin replied to whaphansen's topic in HTML/XHTML
You can set login session if the the user has been logged in your site till the user use the your website otherwise login the site -
You can three ways to create CSS 1)Internal 2)Inline 3)External For further know about the create CSS you can follow this link https://www.w3schools.com/css/css_howto.asp
-
You can use text-overflow: ellipsis; and white-space : pre or nowrap; use in css property.
-
You can also write external css of your <h1> tag. HTML: <h1> CSS h1 { font-famliy:verdana; color:white; text-align:center; }
-
I think your src path is not found in current folder if your audio file in another folder so you should this path write in the <src> tag.
-
You can following the below link for sql injection returned data https://portswigger.net/web-security/sql-injection
-
You can use the below link for build a rock paper scissors game in javascript https://medium.com/javascript-in-plain-english/building-a-rock-paper-scissors-game-with-javascript-bce23d39509d
-
You have missing the quote mark in when you define password
-
The Below url will help for you link api in javascript https://www.programmableweb.com/news/how-to-connect-to-api-javascript/how-to/2018/06/17#:~:text=To open a connection to,the URL of the endpoint.
-
Please help, How do I connect the JQuery AJAX get method to add to a table
Sherin replied to IrfanT's topic in HTML/XHTML
var response = "[{ "Name":"Xyz", "Age":"16", "ID":"5" }, { "Name":"ABC", "Age":"15", "ID":"6" }]"; // convert string to JSON response = $.parseJSON(response); $(function() { $.each(response, function(i, item) { var $tr = $('<tr>').append( $('<td>').text(item.Name), $('<td>').text(item.Age), $('<td>').text(item.ID) ); //.appendTo('#records_table'); console.log($tr.wrap('<p>').html()); }); });