Jump to content

shaijuelayidath

Members
  • Posts

    35
  • Joined

  • Last visited

Everything posted by shaijuelayidath

  1. Sorry I am new to Database and SQL i just gone to phpmyadmin and i was trying to delete the database manually not written any queries, then it was showing a message #1010 - Error dropping database (can't rmdir '.\test\', errno: 17)
  2. I am suffering to delete a database from my phpmyadmin,but it is showing an error like following #1010 - Error dropping database (can't rmdir '.\test\', errno: 17) I don't know what is the complaint, can anybody help me
  3. First you make a folder named 'images'then you put your 'bg.png. in itthen try this code#container {background-image: url(images/bg.png);width: 100%;float: left;}
  4. Hi Birbal, Yes, thats right, it was by some technical misunderstandingI am not very good in using forums because i'm new to it, looking everything now...Thanks to your suggestion
  5. Thank for your reply Birbal, i did'nt see your reply in Javascript Forum
  6. The below code is the increment tutorial from W3Schools.Here 'y' assigned value '5' and x=++y;The result is showing value of 'y' is "6"As per the var delcaration the result should'nt be shown '5', is'nt it ?Can anybody clarify it<p id="demo"></p><script type="text/javascript">function myFunction(){var y=5;var x=++y;var demoP=document.getElementById("demo")demoP.innerHTML=y;}</script> Thanks in advance
  7. The below code is the increment tutorial from W3Schools.Here 'y' assigned value '5' and x=++y;The result is showing value of 'y' is "6"As per the var delcaration the result should'nt be shown '5', is'nt it ?Can anybody clarify it <p id="demo"></p> <script type="text/javascript">function myFunction(){var y=5;var x=++y;var demoP=document.getElementById("demo")demoP.innerHTML=y;}</script>
  8. One of your explanation ( " attributes are accessed by dot operator " ) given me new idea and improved my basic knowledge Thank You Birbal
  9. Thank you for the replies (DonE, Birbal)after the first line there should be a semi colon ";" is'nt it ?in w3c there is not semi colon after the first 'var' delcarion line, but second line is having, is it required or not for the first line ? var demoP=document.getElementById("demo")demoP.innerHTML="x=" + x; wats your comment...
  10. I was refering w3schools Javascript Tutorials,in 'Javascript Arithmetic' section i found a different type of 'var' delcarationactually i did't understand, because it is not refered in the tutorial, the code I given below............................................................................................... <script type="text/javascript">function myFunction(){var y=5;var x=y+2;var demoP=document.getElementById("demo")demoP.innerHTML="x=" + x;}</script>...............................................................................................In the above example i did't understand the below lines, var demoP=document.getElementById("demo")demoP.innerHTML="x=" + x; anyone can define it Thank You
×
×
  • Create New...