Jump to content

V-Man

Members
  • Posts

    28
  • Joined

  • Last visited

    Never

About V-Man

  • Birthday 01/04/1990

Contact Methods

  • AIM
    grodii3k

Profile Information

  • Gender
    Male
  • Location
    Vermont

V-Man's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Totally random, but what the hell I built a computer recently and have Tri-SLI enabled in the nVidia control panel. But, Steam and the Club-SLI App tell me that SLI is not enabled. Anyone have ideas? Would PC specs be useful?
  2. Not quite what im looking for. I need a way to retrieve a lost password from a backup of the registry/ntuser.dat files. Is there a way to do this? ..I'm pretty sure there is...
  3. Hey guys, It's been a while since I last posted. I now have a somewhat odd question but I really need a deffiniate answer. I have recently changed my windows PW (and being a computer nerd, obviously did not create a rescue disc) and have since forgotten it. I have the ntuser.dat file and the whole registry from a month ago on CD. How do I go about finding my old PW? Im pretty sure that its encrypted as a binary string of characters somewhere in the registry, but am totally at a loss as to where to look. Anyone know how to go about doing this? -Pat
  4. Oh god, this could take a very long while to finish as i have never used div's other than for alignment... shiit... well, ill see what i can get done. Im more of a PHP person, not so much HTML, can you tell?
  5. Im not talking about width. Height my boy, HEIGHT! No matter how much or how little "content" is in the main part of the page, I need the footer/bottom to always be attatched to the bottom of the screen...
  6. I guess I dont understand why you're trying to do this... but try... <INPUT TYPE="button" onClick="parent.location='add.php'">
  7. V-Man

    website login

    Agreed. For a log (a good one) you're going to need a databse to store user names and passwords, and other misc info you might want to collect about them. On top of that, youll need to write a register script and then an admin script of some sort. The best thing to do is go pick up a PHP book and start looking at the MySQL examples. If you know HTML, you should be able to pick PHP up pretty fast.
  8. Alright, Maybe I'm going about this all wrong. I need to get a table to take up the whole page regardless of wether there is content to fill it or not. The code I have thus far is: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <link rel="stylesheet" href="style.css" type="text/css"> <style type="text/css"> </style> </head> <body leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0' marginheight='0' marginwidth='0'> <table width="739" height="240" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="20" background="images/left_grad.jpg"> </td> <td width="699" background="images/header.jpg" valign="bottom"> <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="76%" height="188"><div align="center" class="title"> <p>Champlain Valley Outfitters </p> <p class="nav">Offering only the best <br /> in traditional waterfowl hunts </p> </div></td> <td width="24%"> </td> </tr> <tr> <td height="26" colspan="2" class="nav"> <div align="center">:: Home :: Services :: Articles :: Recipes :: Guest Book :: Contact Us :: </div></td> </tr> </table></td> <td width="20" background="images/right_grad.jpg"> </td> </tr> </table> <table width="739" height="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="20" background="images/left_grad.jpg"> </td> <td width="699" background="images/bot_grad.jpg"> </td> <td width="20" background="images/right_grad.jpg"> </td> </tr> </table> <table width="739" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="20" background="images/left_grad.jpg"> </td> <td width="699" background="images/bot_grad.jpg"><div align="center" class="copyright">© 2008 Champlain Valley Outfitters <br />Site designed and maintained by Pat Litke in conjunction with MDM Solutions</div></td> <td width="20" background="images/right_grad.jpg"> </td> </tr> </table> </body> </html> I thought by setting the center table height to 100% would make it .. well, you know, 100% of the page height. But no. The closest example that I can find of what I need (though, NOT full page width, a fixed width of 739 w/ a column down each side thats 20px wide) is located: here Is this making sense? On the example I linked above, see how the footer is at the bottom of the page no matter what? Thats what I need to do. ..
  9. Youre good, thank you. Problem solved.
  10. yes, I updated my DB. The error im getting is ou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'query' at line 1 NOT the unidentifyed row error.
  11. $query = 'INSERT INTO shout (shouttext, user) VALUES ('.$post.', '.$user.')'; Why does that not work? What am i missing...
  12. Alright, got what i need, but now my insert query is bugging... $query = "INSERT INTO shout (id, text, user, shown) VALUES (NULL, $post, $user, CURRENT_TIMESTAMP)"; Why does that bug
  13. >.< never mind, i clearly cant explain this. Ill let you know if i get it.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.