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. jollydonkey

    CSS Centered Container, Trouble with Absolutely Positioned Elements

    Thanks so much guys - great insight and feedback! My site is now looking just the way I want it to using various browsers. Best, JD.
  2. jollydonkey

    CSS Centered Container, Trouble with Absolutely Positioned Elements

    Hello, I'm hoping someone can help me here. I'm trying to use a tableless layout, using only css for positioning. I'd like to have a centered layout, with elements absolutely positioned within a centered container. See http://jollydonkey.com/temp/ If you look at the css source code, can...
  3. jollydonkey

    Capture URL variables

    Hello, Is it possible for php to capture URL variables? Essentially, what I would like to do is send users an email with appended variables and upon clicking the URL, the users are directed to an HTML form with certain form fields prepopulated with extracted values from the URL. Please let...
  4. jollydonkey

    Problem that happens in FireFox only

    It could be a number of issues - I recommend posting some code. It's likely due to some issues with respect to properly setting table dimensions/element positions. If you like to be flush against the browser edge, use CSS or set the margins to 0. jd.
  5. jollydonkey

    PHP processing cc form field (Windows Platform)

    It does - I also found this: http://pear.php.net/bugs/bug.php?id=8047#1183372559 My script is now working...key to remember I guess is that we have control over the headers, including the To: header. In case anyone else experienced the same problem, below is the post of the solution from the...
  6. jollydonkey

    PHP processing cc form field (Windows Platform)

    Hello, I've got a peculiar situation. I have a php form processing script (Windows platform) that is supposed to send a copy of a form submission via email to cc recipients. The script reaches everyone in the to: field, however, not on the cc: field. On a Linux platform, this problem does not...
  7. jollydonkey

    Firefox NOT submitting/capturing form values

    Wow - let me study this revision late tonight and I'll let you know what happens :) Again, thank you so much. Cheers, Dipesh.
  8. jollydonkey

    Firefox NOT submitting/capturing form values

    I'm using PEAR's mail on a windows platform. Granted, it's not the best looking script :) I'm stumped. Also, a special thank you - your help on this and other posts have helped me learn PHP. Cheers, D.
  9. jollydonkey

    Firefox NOT submitting/capturing form values

    Thanks - here is the code: $email = $_POST['email']; $cc = $_POST['cc']; $ccCopy = $cc.",".$email; $topic = $_POST['topic']; $summary = $_POST['summary']; $topic_output = stripslashes($topic); $summary_output = stripslashes($summary); $to = 'me@me.com'; $subject = "$topic_output"...
  10. jollydonkey

    Firefox NOT submitting/capturing form values

    Hello, I have a PHP form processing script that captures various form fields and submits them via email. The script is working in IE and Opera without issues. In Firefox and Netscape, the script executes, however, none of the values inputed in the form get captured. Why is this? If it helps...
  11. jollydonkey

    PHP File Upload (Windows Platform)

    Hello, I'm trying to use PHP to enable file uploads via a web form (one file only), however, I'm getting a File Upload Error. I'm dumbfounded. Note, I'm using a Windows platform for PHP. Below is the code, however, it's echoing a "Upload file error" (i.e. it's not getting beyond the first if...
  12. jollydonkey

    Line Breaks

    Hi, I think I figured it out. Here was the initial issue: I'm having some issues with properly formatting text extracted from an online form using a textarea box. Output will be a *** plain text email***. -- text should wrap at 72 characters -- for lengthy lines, breaks (\n) should only occur...
  13. jollydonkey

    Line Breaks

    The issue is that the width of the textarea box is restrictive. So if the user inputs text, (\n) newline codes are sent to php at the point where the text wraps. The resulting output is fragmented. Perhaps my strategy should be to remove newlines, add newlines at character position 72, however...
  14. jollydonkey

    Line Breaks

    Hello, I'm having some issues with properly formatting text extracted from an online form using a textarea box. Output will be a plain text email. Here's what I need: -- text should wrap at 72 characters -- for lengthy lines, breaks (\n) should only occur after 72 characters -- if a user...
  15. jollydonkey

    Add a fixed string character at the end of line

    I'm not that much of a novice :) Output will actually be via an email form - so jaxtell's solution above hopefully will work out. I just didn't clue in the nuances of HTML during my preview testing.
  16. jollydonkey

    Add a fixed string character at the end of line

    Hi Vacunita, By golly, you are absolutely right! I didn't clue in. Basically, I need 72 characters because I want to format a user's form inputs in an attractive way. Headers will look something like this: -------------------- | TITLE: | -------------------- Any tips? You've...
  17. jollydonkey

    Add a fixed string character at the end of line

    So if $input holds the name of my Study Title, the character "|" will output in the 72nd character column? I tried that and the "|" is appended right after the last character in my Study Title. I'm still confused. Ideas? Cheers, jd.
  18. jollydonkey

    Add a fixed string character at the end of line

    Hello, I'm stumped - I'm hoping someone can help me out. I have a form text field in which a user can enter a title of sorts. The title can be any number of characters in length upto a maximum of 60 characters. Now, at the end of the title, I'd like to use PHP to append a "|" character to the...
  19. jollydonkey

    Cc: PHP form processing of cc field

    Gosh, how embarrassing. My newbiness is so out there. Thanks for helping me out here! Much appreciated.
  20. jollydonkey

    Cc: PHP form processing of cc field

    Thanks - I tried that (by eliminating the $cc in the mail function), however, I get a 0 in the CC field when the email is generated. I'm totally stumped and open to ideas.

Part and Inventory Search

Back
Top