Jump to content

worrall

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by worrall

  1. 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>

  2. 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;

  3. 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.

  4. 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.

  5. 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.

  6. 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.

  7. 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>

  8. 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...