Jump to content

Sherin

Members
  • Posts

    76
  • Joined

  • Last visited

Profile Information

  • Gender
    Female

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Sherin's Achievements

Newbie

Newbie (1/7)

2

Reputation

  1. 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
  2. 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.
  3. Follow the specificity rules https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity
  4. If you have tried SELECT STR(39.776, 15, 2); So your result is 39.78
  5. You can pass single quote ' ' in REQUEST_METHOD.
  6. 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
  7. 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
  8. You can use text-overflow: ellipsis; and white-space : pre or nowrap; use in css property.
  9. You can also write external css of your <h1> tag. HTML: <h1> CSS h1 { font-famliy:verdana; color:white; text-align:center; }
  10. Sherin

    Audio tag

    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.
  11. You can following the below link for sql injection returned data https://portswigger.net/web-security/sql-injection
  12. 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
  13. Sherin

    Will not ADD

    You have missing the quote mark in when you define password
  14. 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.
  15. 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()); }); });
×
×
  • Create New...