Jump to content

Cronthenoob

Members
  • Posts

    312
  • Joined

  • Last visited

Posts posted by Cronthenoob

  1. Try something like this:

    <?$query = "SELECT * FROM table order by name";$results = mysql_query($query);$i = 1;while($e = mysql_fetch_array($results)){ ?>  <tr    <? 	if ($i % 2 == 0){	 echo "bgcolor='transparent'"; 	} else { 	 echo "bgcolor='#F0F0F0' style='color:#7E7E7E;filter:alpha(opacity=70);-moz-opacity: 0.70;opacity: 0.70;-khtml-opacity: 0.70;'";}    ?>>   <td><? echo "<a href='nominationforms/$e[nom_doc]' class='links'>". $e[nom_title]." ".$e[nom_first]." ".$e[nom_middle]." ".$e[nom_last]."</a>"; ?></td>   <td><? echo $e[nom_tenure]; ?></td>   <td><? echo $e[nom_ret_date]; ?></td>   <td><? echo $e[nom_years]; ?></td>  </tr> <? $i = $i + 1;}?>

  2. hehe, I've done that before, it'd be nice to be able to bold code sometimes.Could you post a screenshot or something? So I can tell what the problem is? I think I sort of understand what you are asking.

  3. Thanks, it works now, does that also get rid of any paragraph spacing that used to be there?Edit: Can I also make all cells in table 120 heigh and wide?
    Just addheight:120px;width:120px;to your td class in your css.
  4. Well a sudoku is a 9 x 9 grid, and within that grid there are 9 3 x 3 grids, and I am trying to create on on the PC in HTML.So I need to be able to have a thicker border on some edges.Can I use a code like this, or does this not exist?<table><tr><td left border="1" right border="2" top border="3" bottom border="4"Hi</td></tr></table>
    Use css for borders :)try this outCSS:
    .borders { height:100%; width:100%; border-top:3px; border-bottom:4px; border-left:1px; border-right:2px;}

    HTML

    <table><tr><td><div class="borders">Hi</div></td></tr></table>

    EDIT: You might have to specify solid black after the size of the borderborder-left:3px solid black;you can use whatever color you want. And you might not have to specify if you want it to be solid black.

  5. If you ever want to have e-commerce capabilities you will most likely need a server side language like ASP or PHP. I don't think geocities allows you to use these languages.If you want to build a personal page, you should start out with xhtml and css. Eventually, as your site needs more functionality, pick up wichever server side language is easiest for you! There are several.After you get started, and get stuck (you will get stuck) just come here! There are lots of active members that help people like yourself all day, everyday!

  6. XHTML is just a way to format your html in a standards compliant way.It just contains the set of rules you need to code a valid html file.that being said, xhtml is not a language, therefore, when you write an html file, you can standardize it by using the rules set in xhtml.

  7. you should change background-repeat:no-repeat tobackground-repeat:repeat-y;But that will make the background the size of the browser always, and you probably don't want that.

  8. You can, but you must escape the double quotes or use single quotesso you would do echo "<img src='image.gif' />orecho "<img src=/"image.gif/" />and notecho "<img src="image.gif" />You also don't need the () around the echo statement :)

  9. If you ask me, it's clear who will participate. It's us, the regular users... the helpers. Most newbies just come and go. If any of them wanted to participate, they would have posted in this topic until now.
    Maybe some of the newbies want to help out on the project so they can learn and don't really have any suggestions yet?
    No, he means a subforum in General, for the vote topics, discussions, announcements, etc. about this "project" :)
    Ohh, ok i get it. That would make sense.
  10. Maybe the admin could create a subforum for this project , so all the topics about this project could be placed there?
    You mean to split up the discussions in this thread into other threads, so people don't have to go searching through 9 pages to find information about the project suggestions?
  11. We should start a thread and get a list of people that actually want to participate in the project.That way we have an idea of how many votes there should be. Maybe set a "you must sign up by this date" date. And just sit back, and see who all signs up.

  12. It only takes the files and folders from the current folder. If you click on a link to a different folder, the page comes up and says access is denied, unless of course you put the php file in the folder you are linking too.

  13. It only works If I have the file in every directory and subdirectory.so if i have a folder called "images" with a folder called "good" and a folder called "bad" inside "images"I would have to put the file in the "images", "good", and "bad" folders in order to display everything in all of the folders.My question is:How can I make it so that I don't have to put a copy of the php file in every single folder?

  14. I figured out how to get the file to exclude itself from the list, that was pretty simple.I would really like to not have to put a copy of this file into every single folder for it to work. Thats the main problem.

×
×
  • Create New...