Recent content by Bleto

  1. B

    On PHP Submission Refresh, drop-down values are maintained.?

    So, I see a lot of people talking about writing functions for keeping the drop down menu, but this is what I have: for($i=0;$i<$namecount;$i++){ $thisPage .= "<span class='style1'>Person ". ($i+1)."</span><table style='border: thin silver inset; width:100%;'> <tr><td><input type='text'...
  2. B

    This PHP code is killing me... $_SESSION, $_POST not working! AARRGG!!?

    Tell me why nothing is being passed. Please. I'm too frustrated to be polite. <? //page1.php include ($_SERVER['DOCUMENT_ROOT'] . "/include/include_php.php") ; if($_GET['logout']=="yes"){ session_start(); session_destroy(); header("Location: /"); echo "logout!"; }; // Moved connection and...
  3. B

    PHP integrated frames?

    So, I know everyone hates frames. But here's what I need... so help me out. On the left side of the page, I have a scrolling application form, where certain information is valued with dollars. On the right side of the page, I have an immobile "Total Price: $x", where x is calculated by the...
Back
Top