Jump to content

likethegoddess

New Members
  • Posts

    9
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://www.likethegoddess.com

Profile Information

  • Gender
    Not Telling
  • Location
    San Francisco

likethegoddess's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm looking for a third-party scripts that can send an email confirmation to the submitter and store data to downloadable .csv form. That and thankyou/error pages, spam protection, multiple message recipients, etc., etc. I'm looking at: http://formtoemail.com/formtoemail_pro_version.php http://www.email-form.com/ http://www.alex-hardy.co.uk/downloads/ Do you have any experience with these? Are there any other third-party scripts I should consider? Thanks, Diana
  2. Hmm. Google uses iframes. Slightly different. Unless you're talking about the frames applied to third-party sites in image search. That's frames and that's a very special circumstance.
  3. It would be easy if this were simply my personal preference. With all due respect, Boltz, I can safely say that the vast majority of professional web designers no longer use frames and haven't used frames for many years. I suppose then the question is whether frames are truly needed. Can what the coder is attempting be accomplished with divs instead? Diana
  4. Thanks for your response. I'm good with mime types/file extensions. What I'm looking for is a script that does what I've specified. Thanks.
  5. I'm working on a client file upload facility for my website. I've checked a few file management scripts that offer too much facility to the user and a few file upload scripts that don't do enough. This script needs to exclude uploads by file type and file size, have customizable thanks/error pages (rather than messages), and automatically email on upload. I need secure logon, which can, I suppose, be handled separately. I'd prefer the ability to upload multiple files at once and to allow users to download files as well. I'd also like it to be simple enough that I can add file types and change file size limit as needed. While free is better, I'd definitely donate or pay for something I don't have to tweak too much. Any ideas? Diana
  6. Hmm. I think you'll want to add your text to your HTML rather than your CSS. Since you've specified your image as a background image in your CSS, you might find it easier to create a neighboring div to house your text. Hope this helps. Diana
  7. Don't use frames. Seriously. Even if you get it to work, sites with frames cannot be accessed by most web crawlers. Use divs instead. There are lots of tutorials out there to get you on your way. Hope this helps. Diana
  8. You might consider creating a transparant png for IE7. Opacity is valid in CSS3, not CSS2, and IE7 supports CSS2, not CSS3. Hope this helps. Diana like the goddess design http://www.likethegoddess.com
  9. I'm working with a third-party contact form, trying to expand it for my own use. I found out that the use of "magic_quotes_gpc " is deprecated for PHP6. I've seached this forum in addition to a general web search for substitutions for this portion. Any ideas for updating the following: <? $mailto = 'info@sample.com' ; $subject = "Contact form message" ; $formurl = "http://www.sample.com/contact/index.html" ; $errorurl = "http://www.sample.com/contact/error.html" ; $thankyouurl = "http://www.sample.com/contact/thankyou.html" ; // -------------------- END OF CONFIGURABLE SECTION --------------- $name = $_POST['name'] ; $email = $_POST['email'] ; $subject = $_POST['subject'] ; $comments = $_POST['comments'] ; $spam=$_POST['spam'] ; $http_referrer = getenv( "HTTP_REFERER" ); if (!isset($_POST['email'])) { header( "Location: $formurl" ); exit ; } if (empty($name) || empty($email) || empty($subject) || empty($comments) || $spam!="56728") { header( "Location: $errorurl" ); exit ; } $name = strtok( $name, "\r\n" ); $email = strtok( $email, "\r\n" ); $subject = strtok( $subject, "\r\n" ); if (get_magic_quotes_gpc()) { $comments = stripslashes( $comments ); } $messageproper ="---------- Crazyleafdesign.com message ----------\n\n" . "\nSent by : " . $name . "\nEmail : " . $email . "\nSubject : " . $subject . "\n\n\nMessage : " . $comments; mail($mailto, $subject, $messageproper, "From: \"$name\" <$email>\r\nReply-To: \"$name\" <$email>\r\nX-Mailer: chfeedback.php 2.04" ); header( "Location: $thankyouurl" ); exit ; ?> Thanks, Diana
×
×
  • 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.