Jump to content

Cronthenoob

Members
  • Posts

    312
  • Joined

  • Last visited

Everything posted by Cronthenoob

  1. You can try SELECT companyname, Address, boothnumber, boothspace FROM info WHERE companyname = 'CompanyX'I'm not sure if that is what you are trying to do.
  2. Just call javascript functions where you need them, and just use PHP where you need it.I don't think there is a specific way to make the two combined.
  3. I'm sure there are several ways you can make the two work together to create an interactive web application.What is it exactly that you are trying to do?
  4. You seem to be using java and javascript as the same word. They are two VERY different technologies.
  5. What if you used this:Linky!and put an image instead of text.Try that out, it won't be a dropdown box, but it functions basically the same way.
  6. It isn't possible with HTML. But you can use CSS!Try-it-YOURSELF!Good luck!
  7. <td width="77" style="background: url(rightbg.gif) repeat-y;background-position:right;">
  8. What happens when you don't specify any type of background-color?
  9. The original CSS html, body style: And I changed it to this:html, body { margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; background-color:#CBCBCB; background-image: url('../images/gradient_bg.gif'); background-position:center; background-repeat:repeat-y;} and now it works fine! :)I also completely took away the innerdiv.Thanks for the help :)P.S. What does the <br style="clear:both"> do anyways?
  10. Ok, I added it, try it now :)I've got IE and FF running, and FF is showing the background images fine for me.
  11. Try it now . . . I think I fixed it.I put the background image on the html, body style and added center position and background repeat-y on it. html, body { margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; background-color:#CBCBCB; background-image: url('../images/gradient_bg.gif'); background-position:center; background-repeat:repeat-y;} Before I had the background image in a different div.
  12. I tried this:background-attachment:fixed;background-position:center;background-repeat:repeat-y;No luck.
  13. Cronthenoob

    XML Problem

    Apparently you don't have internet explorer installed? Or the correct version?
  14. Sure.The Test Page in Question.
  15. So This is what i've got. <div class="outerdiv"> <div class="innerdiv"> <div class="content"> <div class="left"></div> <div class="left"></div> <div class="right"></div> <div class="right"></div> </div </div></div> In IE the innerdiv stretches to the size of the content.In FF the innerdiv only stretches to the size of the viewport.If the user has to scroll down in FF, the part that was originally hidden, has no background.Heres my CSS: html, body { margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; background-color:#CBCBCB; height:100%;}.outerdiv {width:100%;height:100%;margin:auto;}.innerdiv {background-image:url('../images/gradient_bg.gif');width:800px;height:100%;margin:auto;float:none;}.content {background-color:transparent;width:600px;margin:auto;}.banner {background-image:url('../images/banner_bg.gif');background-repeat:no-repeat;width:608px;height:103px;margin:auto;float:left;}.left { width:435px; position:relative; float:left;}.right { width:160px; position:relative; float:right;} I suspect it has something to do with the float, and it takes the dives that are floating outside of their container.
  16. I've got Head First Java, and its has a really good way of teaching the language, I've worked through it about halfway with ease.Maybe they think those are good languages to learn programming logic with?
  17. I just arrived home from a local college because I wanted to sign up for a JAVA course. I have been teaching myself a little java here and there, and I'm getting pretty good at the basic concepts. They wouldn't allow me to sign up for the course because I did not take their "intro to QUICK BASIC" or "intro to VISUAL BASIC" courses. I've got an associates Degree in Web programming already, but they still insisted that I need to take those courses.My question is this:Does learning Java really require those two courses? Why do I need to know those two things in order to understand java if I've already got a background in programming?
  18. You can use divs with float left and float right style.Thats what I've been experimenting with, and it comes out Like This !!There are some bugs with it though. . . .
  19. Everything works! I'm not receiving the email with the link in it for some reason, but my host testing it for me, and He received the email and used the verify link succesfully. Thanks all for the help!
  20. Cronthenoob

    reset MySQL

    I've done that before . . . The database management system I was using at the time allowed me to log in and delete the database. You could delete the whole thing and remake it!! WEEEEEEEEE. . . .Although that'd ###### if you had a lot of info in there.
  21. I tried about 5 different ways, all with the same subject and and message, and one of them went through . . . .I guess I should have changed the message. . . .It took about 10 minutes to send. Could be my works email server . . .LOL, I got another one just now, Funny.Now I've just got to wait and see if the email I sent with the link in it ever gets here . . . . .
  22. Thats a lot of possibilities!My hosting company has awesome customer support, and they gave me the following code to try. It works, exept the part where it sends the email . . . No errors, but I never recieve the emails.Heres the code, maybe I did something wrong with quotes or something?The part where I put the target email address is the $mail->AddAddress part. require("c:\php\includes\class.phpmailer.php"); $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Host = "mail.myserver.net"; $mail->SMTPAuth = true; $mail->Username = "myemail"; $mail->Password = "mypassword"; $mail->From = "my email"; $mail->FromName = "my name"; $mail->AddAddress($_POST['email']); echo $mail; $mail->IsHTML(true); $mail->Subject = "Test message sent using the PHPMailer component"; $mail->Body = "This is a test message."; $mail->Send();
×
×
  • Create New...