Jump to content

CyberWoolf

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

Everything posted by CyberWoolf

  1. Upon further research I find it's not possible. Its just one of those settings you can't change like displaying the url on printout (unless you do it manually through your browser settings).
  2. Nope... that only works on the footer element which wouldn't be every page, just the end of the page :-/
  3. If you are trying to line up three div's in a row, try setting the first two to float: left; . If you leave the last div without a float it should work! .div1 { float: left; } .div2 { float: left; } .div 3 { }
  4. Hey guys, I have a watermark on every page when printing. That part works great! What I am having a problem with is trying to make a bottom print margin on every print out page. So I could have like a 200px gap between the content of the page and the bottom of every page that prints. I am baffled!!!
  5. Woo! Solved the problem... it had nothing to do with what was posted. Stupid typo in the insert command! :-\ Thanks for helping guys :-) And thanks for being so nice! Usually they are pretty snippy and mean when you ask questions in forums..
  6. Well... now I'm even more baffled.. This was the result [sc_address_btn] => addy1 Thanks.. I added the echo and stopped using short tags
  7. Thanks.. I added the semi colons. Where should I add the echo? Do I replace the current post function with it or just add it in addtion?
  8. no.. its not taking info from another page. Just the one page and the form.php file to post the data and send an email. :-/ echo "sc_address_btn = {$_POST['sc_address_btn']}"; I tried doing that, but it didn't help. I tried it at after the submit button and then on the form.php file too Thanks for responding so quick :-)
  9. I'm hoping someone can help me out here. I am stumped. I cannot get my radio group to save to mysql db. All the other fields will save fine. If I enter the value manually in the db, it works but will not save. It actually clears the info in there ??? FORM switch($sc_address_btn) { case "addy1": $checkaddy1 = "checked"; break; case "addy2": $checkaddy2 = "checked"; break; case "addy3": $checkaddy3 = "checked"; break; } <table width="250" border="0" cellpadding="0" cellspacing="0" class="form"> <form id="form1" name="form1" action="form.php" method="POST"> <tr> <td width="74">Address 1<br /> <input type="radio" name="sc_address_btn" value="addy1" <?=$checkaddy1 ?> > </td> <td width="176" colspan="2"><textarea name="Address" rows="4" class="single" id="Address">some addy 1</textarea></td> </tr> <tr> <td width="74">Address 2<br /> <input type="radio" name="sc_address_btn" value="addy2" <?=$checkaddy1 ?> > </td> <td colspan="2"><textarea name="Address2" rows="4" class="single" id="Address2">addy3</textarea></td> </tr> <tr> <td width="74">Address 3<br /> <input type="radio" name="sc_address_btn" value="addy3" <?=$checkaddy1 ?> > </td> <td colspan="2"><textarea name="Address3" rows="4" class="single" id="Address3">addy2</textarea></td> </tr> <tr> <td width="74"> </td> <td colspan="2" align="left" style="margin:10px 0 0 0;"><input style="width:145px;" type="submit" name="submit" id="submit" value="Submit"> </td> </tr> <tr> <td width="74"> </td> <td colspan="2"> </td> </tr> </form> </div> </table> PHP My post $sc_address_btn = $_POST["sc_address_btn"];
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.