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 Mike Lewis 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. ChocolateLover

    Background image placement and IE issuses

    Thanks very much, that worked.
  2. ChocolateLover

    Background image placement and IE issuses

    Of course, thanks. I just copied the code that was dictating the width of the main content into the header css. Thanks very much for your help. I just need some help with the navigation now.
  3. ChocolateLover

    Background image placement and IE issuses

    I'm trying to be good and make this website table-less www.badgeraccounting.co.uk. I have 2 questions. 1) Header - in the CSS I have two background images, one aligned left and one aligned right. The total width of the two images is 750px. The width of the content can expand and contract...
  4. ChocolateLover

    Help with RewriteRule please

    Can anyone tell me what the rewrite rule for this would be please. I want to redirect for example chocolate_scented.html?sid=ee1bfaad296af98940af4448b5fa6b7f to chocolate_scented.html but chocolate_scented.html could be any page name, in other words get rid of sid. So *.html?sid=*...
  5. ChocolateLover

    Firefox pointing to the incorrect version of Apache

    A while ago I upgraded Apache from 1.33 to 2.2 and have been using Safari successfully since. When I try to run a page from Firefox (1.5.0.8), for example http://localhost/oscommerce/catalog/admin/server_info.php I get Not Found The requested URL /oscommerce/catalog/admin/server_info.php was...
  6. ChocolateLover

    Display dynamic total using javascript

    Thanks, this is all really helpful.
  7. ChocolateLover

    Display dynamic total using javascript

    I'm new to javascript. I'd like to be able to display a total (that the user cannot change) that changes dependent on certain fields selected without reloading the page. Is this the best way to approach it? 1) Write a javascript function to calculate the total 2) Trigger the calculation...
  8. ChocolateLover

    Keeping/not keeping variables when a form is submitted

    Thanks. That's what I'm trying to do without much luck. I'm trying to say if isset($_SESSION['record_saved']) then don't run foreach($_POST as $key=>$value){ $_SESSION[$key]=$value; } I'm definately setting $_SESSION['record_saved']. If I check it before submitting it = 1, after...
  9. ChocolateLover

    Keeping/not keeping variables when a form is submitted

    I'm new to PHP. I have a form that saves a record into a database. If the required fields haven't been completed when the form is submitted, the form is redisplayed with a message and the fields that were already completed are retained using session_start(); foreach($_POST as $key=>$value){...
  10. ChocolateLover

    Multiple HTML Forms with PHP

    I've had a lot of help from this forum so I thought I'd try again:) I have two forms on a page, both created using PHP. This is the HTML for the first form, 'weeks': <form action="booking.php" method="post" name="weeks"> <table width="650" cellspacing="0" cellpadding="5" border="0"> <tr>...
  11. ChocolateLover

    PHP Arrays - new PHP user

    I'm learning PHP and I have created a $_SESSION that holds this array. Array ( [booking_dates] => [book] => Array ( [0] => 2006-01-20 [1] => 2006-01-27 ) ) How do I access the dates to be able to use them? In other words, how do I refer to the 'book' array and loop through it? Any help...
  12. ChocolateLover

    Display query results within cells in table with multiple rows

    Can anyone help please. I'd like to create a table to display information from a query. The table has 4 columns, so the 5th record should be displayed in the 1st column of the 2nd row, the 9th record in the 1st column of the 3rd row, etc. This is the code //columns in the table $columns=4...

Part and Inventory Search

Back
Top