basic html/frame question.. hooker/beer

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • xxweekxx
    Confirmed User
    • Oct 2002
    • 6780

    #1

    basic html/frame question.. hooker/beer

    anyone that can help me real quick will get a beer/hooker..

    Ok say i want to do this:

    When someone hits mydomain.com , itll just open up google(in a frame), but FULL page basically, so they think they are on google, except itll say mydomain.com at the address bar...

    Can anyone help with the code..
    _________________
    I am the best
  • frank7799
    Confirmed User
    • Jul 2003
    • 1974

    #2
    Code:
    	
    <frameset cols="1" rows="1">
    <frame src="http://www.google.com" name="main">
    <body>
    
    </body>
    </frameset>

    Comment

    • xxweekxx
      Confirmed User
      • Oct 2002
      • 6780

      #3
      gonna try it now..
      _________________
      I am the best

      Comment

      • xxweekxx
        Confirmed User
        • Oct 2002
        • 6780

        #4
        works.. thanks.. i owe you a hooker.. where/when do you want her
        _________________
        I am the best

        Comment

        • frank7799
          Confirmed User
          • Jul 2003
          • 1974

          #5
          Send her to Webmaster Acess Amsterdam on Saturday.

          Comment

          • qxm
            Confirmed User
            • Jul 2006
            • 5970

            #6
            dat was easy .....

            ICQ: 266990876

            Comment

            • ToplistBlog_Com
              So Fucking Banned
              • Jul 2006
              • 2065

              #7
              Haha, I think we should reset the national economy to this.

              Comment

              • xxweekxx
                Confirmed User
                • Oct 2002
                • 6780

                #8
                DOESNT OPEN THE PAGE IN IE! i just lost a bunch of cash
                _________________
                I am the best

                Comment

                • xxweekxx
                  Confirmed User
                  • Oct 2002
                  • 6780

                  #9
                  ahh damn i had <body> tags in there.. i lost maybe $500 tonight cuz of this stupid mistake!
                  _________________
                  I am the best

                  Comment

                  • Alky
                    Confirmed User
                    • Apr 2002
                    • 5651

                    #10
                    use an iframe with css instead:
                    Code:
                    header:
                      <style type="text/css">
                       html, body, div, iframe { margin:0; padding:0; height:100%; }
                       iframe { display:block; width:100%; border:none; border:0; }
                      </style>
                    
                    body:
                     <body>
                      <div>
                       <iframe src="/blahhhhhhhhhhhh.php">
                       </iframe>
                      </div>
                     </body>

                    Comment

                    • frank7799
                      Confirmed User
                      • Jul 2003
                      • 1974

                      #11
                      Originally posted by xxweekxx
                      DOESNT OPEN THE PAGE IN IE! i just lost a bunch of cash
                      Opens in IE as well as in FF just fine for me.

                      Comment

                      • xxweekxx
                        Confirmed User
                        • Oct 2002
                        • 6780

                        #12
                        Originally posted by Alky
                        use an iframe with css instead:
                        Code:
                        header:
                          <style type="text/css">
                           html, body, div, iframe { margin:0; padding:0; height:100%; }
                           iframe { display:block; width:100%; border:none; border:0; }
                          </style>
                        
                        body:
                         <body>
                          <div>
                           <iframe src="/blahhhhhhhhhhhh.php">
                           </iframe>
                          </div>
                         </body>
                        Whats the advantage of using css over the other code
                        _________________
                        I am the best

                        Comment

                        • xxweekxx
                          Confirmed User
                          • Oct 2002
                          • 6780

                          #13
                          so whats the benefit of usin the css?
                          _________________
                          I am the best

                          Comment

                          • xxweekxx
                            Confirmed User
                            • Oct 2002
                            • 6780

                            #14
                            arghh bump again.. can i just go with the other one.. or is css really better..
                            _________________
                            I am the best

                            Comment

                            • ProG
                              Confirmed User
                              • Apr 2009
                              • 1319

                              #15
                              If it aint broke don't fix it ;)
                              History will be kind to me for I intend to write it.

                              Comment

                              Working...