Jump to content

scottiesr1

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Everything posted by scottiesr1

  1. WOW, Thank you a million!! It worked!! I spent about 4 hours trying everything!! I so appreciate you time and you help!!
  2. Thank you Ryan. I will try it and let you know!!
  3. I am trying to get a background picture and then a page wrap text area over it. I get the page wrap area to pop up and then it is covered by the background picture. I hate to admit that I have been working on this for hours...but I have. I have included the code below and I appreciate anyone who may offer some insight as to why the background covers the text! I have the following function that I call to set up the background and the wrap box: <?php function back_pic() { ?> <html><style> img.bg { min-height: 100%; min-width: 1024px; /* Set up proportionate scaling */ width: 100%; height: auto; /* Set up positioning */ position: fixed; top: 0; left: 0; } @media screen and (max-width: 1024px){ img.bg { left: 50%; margin-left: -512px; } } #page-wrap { position: relative; width: 700px; margin: 100px auto; padding: 20px; background: mistyrose; -moz-box-shadow: 0 0 20px black; -webkit-box-shadow: 0 0 20px black; box-shadow: 0 0 20px black; } p { font: 15px/2 Georgia, Serif; margin: 0 0 20px 0; text-indent: 20px; } </style> <img src="../images/bckpic.jpg" class="bg"> <div style=" top: 0; left: 20; position: absolute; visibility: show;"> <A HREF="/websitepages/home.php"><IMG SRC="../images/home1.png"> </a> <A HREF="/websitepages/about.php"><IMG SRC="../images/signup1.png"> </a> </div> </html> <?php } ?> ---------------------------------------------------------------------------------- Then I have this code that is supposed to create the page with the text over the picture: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <?php session_start(); include('../select_packages/pgbac_design.php'); back_pic(); ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title> Page Form</title> <link href="loginmodule.css" rel="stylesheet" type="text/css" /> </head> <div id="page-wrap" > <h1 style="text-align:center;"> <br/><font color="red" size="5"><strong><b> Hello, My Code Doesn't Work </font> </h1> <h2 style="text-align:center;"><font color="black" size="4"> I pop up and then I hide behind the picture....or maybe I just pop up for a second. Users must read really fast to catch me before I disappear. </font> </h2> </div> </html> THANKS!!
  4. Thanks a bunch!! Now it makes sense. I would have never thought of embedding the php actual value!!
  5. I am attempting to send a form with the input as submit. I want the input name to be a variable so I can distinguish where this input is sent from and act accordingly in when processing the input. I can't seem to get this variable name to change and I only get the actual variable name to be sent instead of the value of the variable. The variable I am trying to send is mem_or_ven. "$mem_or_ven", the name is literal: $mem_or_ven. If I leave out the quotes, no luck, either. I would appreciate any help!! Here is my code: <?php if (isset($_POST["member_x"])) { $mem_or_ven = "member"; } ?> <form id="loginForm" name="loginForm" method="post" action="register-exec.php"> <table width="300" border="0" align="center" cellpadding="2" cellspacing="0"> <tr> <th>First Name </th> <td><input name="fname" type="text" class="textfield" id="fname" /></td> </tr> <tr> <th>Last Name </th> <td><input name="lname" type="text" class="textfield" id="lname" /></td> </tr> <td> </td> <td><input name="$mem_or_ven" type="submit" name="Submit" value="Register" /></td> </tr> </table> </form> THX!
×
×
  • 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.