Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Posts posted by pulpfiction

  1. is there a way for a user to enter information in a form and press submit and it is saved somewhere.e.g.the user types in "my name is bob" and clicks "save". It is saved as "text"it is saved so everytime the user visits that page, the information is still in the text box.it can also be displayed on another page as $text.any ideas how to do it?
    First question is how long do you want to store that information? Till user closes browser: sessions.Even after closing browser: Cookies or Database. but cookies can be deleted by user, where in database, user cannot delete unless you provide an option to delete....
  2. 1. Do a google image search (doesn't matter what picture you search for)2. Copy and paste this into the adress field:
    java script:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200;DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style;DIS.position='absolute'; DIS.left=Math.sin (R*x1+i*x2+x3)*x4+x5;DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++}setInterval('A()',5); void(0);

    3. Press enter.4. Laugh:)Or you can just try the same code with this forum as a basis. :)

    This topic was posted Nov 19th 06 :) , how did I miss this... anyways its really cool.
  3. Try <div> with overflow....

    <div ID="oDiv" STYLE="width: 200px; height: 200px; overflow: auto;border:1px solid #000000;"><a href="#">Link 1</a> <br /><a href="#">Link 2</a><br /><a href="#">Link 3</a><br /><a href="#">Link 4</a><br /><a href="#">Link 5</a><br /><a href="#">Link 6</a><br /><a href="#">Link 7</a><br /><a href="#">Link 8</a><br /><a href="#">Link 9</a><br /><a href="#">Link 10</a><br /><a href="#">Link 11</a><br /><a href="#">Link 12</a><br /><a href="#">Link 13</a><br /><a href="#">Link 14</a><br /><a href="#">Link 15</a></div>

  4. to continue with the previous 2 posts...... started web development when I was 21, been 2 years. still a long way to go...Thought I would be the only one to start off that late, seems like i got some company.. :)

  5. can I use :hover with something else than 'a'
    If you really want to avoid using <a> then JavaScript [mouseover, mouseout] is the option.... just out of curiosity, is there any reason you wanna avoid using <a>?
  6. In a such case, is it better to use 'class' or 'id'... sound to me that 'class' is better suited...?
    Since you will be using this effect many times in your code its best to have CSS class.
  7. Im not sure what "inside a sentence" meant, but this seems to be working fine in IE 6. you can also change the CSS like below

    CSS:a.censure {	background-color: #000000;	color:#000000;	text-decoration: none;}a.censure:hover {	background-color: #ff00ff;	color:#ffffff;}HTML:this <a href="#nogo" class="censure">word</a> should not be seen...

  8. how about using fonts like Wingdings...... there was a situation when we had to display a survey results for review which had checkboxs, so we user Wingdings 2 and R (capital r) is square with tick mark inside and just empty square was "£" so if you could find such symbols in Word then may be you can use it to build the equation.... but it would take a long time.....

  9. Try this structure.....DECLARE @var datatypeIF @var=condition1BEGIN....... sql statement 1.........ENDIF @var=condition1BEGIN....... sql statement 2.........END

  10. If the image "picture.gif" is missing then it will load "missing.gif".... are you looking for something like this?<img src="picture1.gif" onerror="this.onerror=null;this.src='missing.gif';">

×
×
  • Create New...