HighDots Forums  

Background GIF in table won't display

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Background GIF in table won't display in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #11  
Old   
dficks
 
Posts: n/a

Default Re: Background GIF in table won't display - 08-05-2004 , 02:35 AM






Thank you again Nadia -- not being open to advice is definitely a liability, I've found

Reply With Quote
  #12  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Background GIF in table cell won't display - 08-05-2004 , 08:33 AM






Please DO NOT HIJACK other threads topb and dficks. Make sure you are
posting a NEW post, not a reply post.

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"dficks" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
topb -

I just learned how to do this -- here is what someone sent me. You have
to
create two pages, an html page with the form and a php page to direct the
results -- that is, if I understand what is going on correctly. At any
rate, it
works!

I attached the code but am not sure if it will come over correctly, since
this
program replaces some of the tags. Send me an email at
daveficks (AT) justmysites (DOT) com and I'll forward the attachment to you that
explains
this.

Dave






Below is a simple PHP email example. Two files are created, form.html
which
holds a simple email submission form
and email.php which is the page that gets processed when the form is
submitted.

In the email.php file, you'll notice we set the $msg variable = to some
text
and $email_address. PHP can
reference any submitted form field from the previos page (in this case
"email_address") on the
processing page as $VARIABLE_NAME. So what we are doing is including the
email
address in the message we
are sending to whomever we are sending it to!

The best way to get this is to play around a bit and see the results.
Either
way, PHP is a much better
solution than legacy CGIs for doing this!

Let me know if I can help!

----- form.html ----
form action="email.php" method="post"
b>Email Address:</b
input type="text" name="email_address" size="30" maxlength="75"
input type="submit" value="Submit"
/form



---- email.php ----
?php

$to = "whoever (AT) wherever (DOT) com";

$subj = "your subject";

$msg = "your message\n\n".$email_address;

$from = "From: address (AT) domain (DOT) name (whoever you want it to come from)";

mail($to,$subj,$msg,$from);

?

Thank you for submitting!




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.