Jump to content

worrall

Members
  • Posts

    15
  • Joined

  • Last visited

worrall's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. I think CSS float and a margin will solve the problem. first div goes here....float: left; width: 200px; second div....float: left; margin-right: 200px; third div....float: left; margin-right: 200px;
  2. I would say w3 schools as it gives more information than any one else.
  3. I think this code will help you spacing the navigation.<input type="submit" class="button" id="Submit1" value="Remove" name="btnRemoveFunds"> <button class="button" id="Button1">Add More Funds</button>
  4. This is the code i use to search the data.$query=mysql_query("select * from inser where name='".$_GET['id']."'"); // Query to fetch data from data base$row=mysql_fetch_array($query); // Query to fetch data from data base//code for search $output="<table border='2' cellpadding='4' align='center'><tr><th>name</th><th>email</th><th>dob</th><th>phone</th><th>city</th></tr>";$output.="<?php while($row = mysql_fetch_array($row)) { ?><tr><td>".$row['name']."</td><td>".$row['email']."</td><td>".$row['dob']."</td><td>".$row['phone']."</td><td>".$row['city']."</td></tr>";$output.="</table>";echo $output;
  5. I think you have to put one onclick function in which you have to write the validation code based on which the appropriate message will display.For eg. if(x<=100){var msg = " Low ";return false;}
  6. worrall

    html div

    The <div> tag is used to give some space or allocate some part of the form for particular section in an HTML document. Now a days people are using div tags instead of table to make the output more attractive. So its good to learn about div.
  7. Use this code it will help you "<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />".
  8. If you want your code to be in the center of the page, then just mention in the starting of the code as align "center" , if the code is even moving to the left then use the <center> tag.
  9. worrall

    Frames?

    Without using Frames website data will be clustered. It looks ugly, So by using the framsets you can arrange the data what ever order you like, It is to see in a good manner and the user can understand them easily.
  10. You can find the color picker on net , I found that w3schools itself provides the color pickers, on this particular site you can find the color pickers and choose the appropriate color picker and apply in your site.
  11. Use a div tag and inside the div tag just write align="left" and in your search bar css code option also you have to put in LEFT margins alignments.Take care of your css code.It will be working in my system.Just do the mentioned changes.Hope so it would work for you.
  12. <textarea id="" type="" name="" style="resize: none; "></textarea>I think this would help you to run in all browsers.
  13. I think you can make use of the colspan to move the content towards right just by increasing the colspan value. For this you need not apply any styles , you just go with the html code you have.
  14. worrall

    HTML

    I think this will work for you, see the code and check the result. Its really good.<html><body> <form action="upload_file.php" method="post" enctype="multipart/form-data"><label>Filename:</label> //name of the file to be uploaded.<input type="file" name="file" id="file" /><input type="submit" name="submit" value="Submit" /></form> </body></html>
  15. This is some what bothers you but you can get it cleared by doing some practice. I would like to tell that we cannot implement the thing you are asking, i.e., link in another link, but we can use linksone after the other.
×
×
  • Create New...