Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Everything posted by pulpfiction

  1. To have a seperate members pages, you'll need a login / User validation. So to start off you'll need to know some server side scripting, as mentioned by mradam, there are many choices, PHP, ASP.NET, ASP. Second would be to store some info related to user login or individual user info like user profile, so you'll need a database, MySql, MS Access.....
  2. pulpfiction

    help me!

    Reason why you use a back slash is..... The backslash is there as the javascript escape character. It allows you to write the forward slash without it being mistaken for a division sign! (Remeber / is division in JavaScript). Thus using the backslash followed by a forward slash ultimately gives us.......our single forward slash.http://www.devguru.com/Technologies/ecmaSc...characters.htmlhttp://www.pageresource.com/jscript/jprompt.htm
  3. Windows Server named "Longhorn", quite a few in oklahoma, US. and mainly in my school [univ of oklahoma] will be offended.... any [college] football fans here?? then you must have heard of OU - TEXAS [longhorns] Rivalry...
  4. Will this work, [im a beginner in PHP] just a guess.....<td width='200' align='left' onclick=<? echo(' "document.'. $myForm . '.submit();" '); ?>
  5. You can use that code, it should work... Try the code and post here if you are getting any errors.. there are many good PHP devs who can help you....
  6. Javascript code of what jesh mentioned....http://www.javascriptkit.com/javatutors/datedifference.shtml
  7. your site's really cool... nice color scheme.. I personally like blue and gray.. and one thing is, If you could reduce the font size in the under "summary" on the right. everything's in smaller font size except for that..
  8. If you see right now, in the "Top 10 posters today" there is a member with no name and no joining date but has posted 4 messages... how come???http://w3schools.invisionzone.com/index.php?act=Stats
  9. Neither did I see you.... may be it did not show us in a dotted underline [replying...] there's a big time diff.. wierdMine: 12:18 AMYours: 12:26 AM
  10. This might helphttp://email.about.com/cs/phpemailtips/qt/et031202.htmhttp://www.smartwebby.com/PHP/emailsending.asp
  11. I've also played that game, had problem with load time, cos of computer config. it reminds me when couple of my friends played the game for the first time and almost fell from the chair, when those creatures try to attack and come on to the face. freaked them out, its intense and all of a sudden something like that happens....
  12. Try this, it should work....DECLARE @value1 int, @value2 intSELECT @value1 = column1, @value2 = column2 FROM mytable WHERE id=5
  13. Whats the difference between these 2 variable decleration?Dim doc As New System.Xml.XmlDocumentandDim doc As System.Xml.XmlDocumentI was trying to read data from a XML file. When code like below, load failed and went to catch directly, but when changed doc decleration to Dim doc As New System.Xml.XmlDocument, then it works fine... any explanation might help. ThanksDim doc As System.Xml.XmlDocumentTrydoc.Load("xmlfilename.xml")......Catch.....End Try
  14. try doing this [bolded part] for all you css element ID's....#navbar_big ul li#forum a { background-image: url(../images/forums.png); background-repeat: no-repeat; }#navbar_big ul li#forum a:hover { background-image: url(../images/forums_rollover.png); background-repeat: no-repeat; }
  15. Also the car images are kinda big and horizontal scroll bars appear.. it would look a lot better if you can contain the size...
  16. Try reading these discussions, might helphttp://www.webmasterworld.com/forum21/11446.htmhttp://www.webmasterworld.com/forum21/11245.htm
  17. Try this..query = "SELECT * FROM dictionary WHERE word LIKE '" . $_GET['s']. "%'"
  18. Not sure if this will solve your problem, but guess this link might help you... something change needed in php.ini file..http://www.thescripts.com/forum/thread3970.html
  19. $sql = "INSERT INTO bruktbil (id,eier,pris,bil,tid,skade,status) VALUES ('',";$sql .= "'" . $brukernavn . "',";$sql .= "'" . $pris. "',";$sql .= "'" . $denbilen. "',"$sql .= "'" .$tid. "',";$sql .= "'" .$denskade. "')";mysql_query($sql); Try this, and its better to have a seperate variable to form the query, in case of error if you just echo [print] the variable you can find the mistake....
  20. Try this site...http://www.openstockphotography.org/
  21. dim sql as stringdim customer_ID as integersql = "SELECT * from [invdata] WHERE cus_no = '" & customer_ID & "'"You can assign any value for customer_ID variable and it will be replaced in the sql query....
  22. pulpfiction

    ASP.NET

    http://www.webdesignbids.com/freelance_pro...te_designs.htmlThis is a site where freelancers do projects for others for money, but this list can give you some idea about real time projects
  23. Oh so many use this text as a filler, check out open source template design website [like http://www.openwebdesign.org], you will find most templates posted use this text..
  24. Yeah I think poker is lot more just gambling. Its more of a mind game... not like betting on horses is more of a luck factor, but in poker, the way they manipulate, trick and bluff... it needs a lot of talent to play it...
×
×
  • Create New...