Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. nickruiz

    CSS problem - 2-column layout inside a div object formats text wrong

    Thanks again for your help. When I test my code in Firefox, the first line of text in the left and right column are not lined up together. The left column appears to be lower. And in IE6, the "blah"s wrap to the left column, instead of wrapping to the right column. I would like my CSS code to...
  2. nickruiz

    CSS problem - 2-column layout inside a div object formats text wrong

    Okay, here is my validated code: /* prayerRequest.css */ #prayerRequest { /*position: relative;*/ background-color: #FFF; border:1px solid #000; /* width: 500px; */ /* height: 300px; */ margin-left: 50px; margin-right: 50px; margin-bottom: 20px...
  3. nickruiz

    CSS problem - 2-column layout inside a div object formats text wrong

    Actually, I noticed that the text formatting is off in IE also. If you have any ideas why this happened, please let me know.
  4. nickruiz

    CSS problem - 2-column layout inside a div object formats text wrong

    This is a cross-compatibility issue between Firefox and IE. Before I try to explain the problem, it might be easier to simply post the code and allow you to see the problem for yourself. CSS file: /* prayerRequest.css */ #prayerRequest { /*position: relative;*/ background-color: #FFF...
  5. nickruiz

    PHP custom session object containing MySQL queries

    Thanks for your help. It turns out that each page would still have to read the database script file to interpret the Database session variable. Also, it required that the object was declared before session_start() was invoked. Too much of a hassle for a result that would've likely made...
  6. nickruiz

    PHP custom session object containing MySQL queries

    That's what I was afraid of. I figured that MySQL connection handles weren't persistent. I was hoping that I could make my PrayerDatabase object persistent, as it is currently 51KB and growing due to all of the functions it contains. Perhaps, instead of calling the constructor on each page, I...
  7. nickruiz

    PHP custom session object containing MySQL queries

    Hello, I am trying to add a session variable that is an object that contains all of the MySQL queries I need to use to interact with my database. Currently, I call the constructor of my object on each page. Attached is my test file (testSession.php) <?php // testSession.php...

Part and Inventory Search

Back
Top