Link to home
Start Free TrialLog in
Avatar of Misty Corning
Misty Corning

asked on

Form Submission

What URL do I use to submit a form?  I'm using dreamweaver cc 2018.  Do I still need php to communicate this for submission?  Thanks!
ASKER CERTIFIED SOLUTION
Avatar of zephyr_hex (Megan)
zephyr_hex (Megan)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Misty Corning
Misty Corning

ASKER

Thank you!  That actually does help and confirms some questions I had.
On my radio buttons, how do I "hide" the circle and just have the words displayed?  Thanks!
If you don't want the radio button to show, hide it.  You can use CSS to do that.

<input type="radio" style="display:none;">

Open in new window

Thank you.  I see that radio buttons are for selecting just one.  Is there a certain code I need for checkboxes or radio to indicate which one they want?
I am trying to get certain fields to allow the user to select more than one.
If you want the user to be able to select more than one, then you want to use checkboxes and not radios.  Radios are meant to allow only single select options.

You can change a radio into a checkbox by changing the input "type" attribute.

<input type="checkbox">

Open in new window

Good.  I did it right.  When connecting, it shows:  The URL prefix "/" of your testing server does not match the URL prefix "/racial profiling/" of your site.  since you are using site relative link it is possible that your links display incorrectly at runtime.  You can edit the Web URL in your server settings.


I have tried to edit these fields, but things don't seem to work.  How do I fix this?  Do I need to send screen shots?  Thanks!
It sounds like you need to adjust your links.  If you're using relative links, the location that a link refers to on your test server may not match the location it refers to on your production site.

You can read more about relative links here:
https://helpx.adobe.com/dreamweaver/using/linking-navigation.html#WScbb6b82af5544594822510a94ae8d65-7c42a
ok, thanks.  I'm trying to connect Dreamweaver cc 2018 to sql server.  How do I run the connection string?
You may want to open another question for that.  I know very little about Dreamweaver.