Form/text-advice/guidance general area

Afternoon everyone,

I try to have a surface of form/text which, once implemented to date, appears on another page of the same site. I just need some general advice on how to get there and seem to get myself more confused I search!

It will be used for a bulletin board feature - a person will update the online form on a single page (which will be password protected) then everyone else can see the information of the online form displayed on the page "Bulletin Board".

I've been looking at Spry options and forms of text box, and then click online forms processing sites, but I think I do more complicated it must be.

Could someone give me general advice which direction to go please? Any help at all would be much appreciated

Thank you

Andy

You will need a language server side, programming (php, asp, coldfusion,...) to process form data and a database on the server side, or at the very least, a text whose form data file are filled with web pages.  What programming languages does your server support?

Depending on what you want to do, you may be able to do it with a simple Content Management System (CMS).

Cushy CMS - very simple. No programming or database required.  The change is
fact on their servers.  Watch the video to see how it works.
http://www.CushyCMS.com/

Seed - content is located on your server.  Available in ASP, ASP.net or PHP
versions - no database needed.  http://contentseed.com/

Nancy O.
ALT-Web Design & Publishing
Web | Graphics | Print | Media specialists
www.Alt-Web.com/
www.Twitter.com/ALTWEB

Tags: Dreamweaver

Similar Questions

  • How to set default cell format 'text' instead of 'general' sheet in excel using pl/sql code?

    Can someone please help me on how to generate excel file using pl/sql? I have generated csv files successfully, but now I need to generate a excel. I changed the code generation of the csv file, but the file gives me error when opening:

    "The file you are trying to open,"XXXX.xls", is in a different format than specified by the file extension. Do you want to open it now? »

    If I choose Yes then open the excel file, but it excludes the leading 0 in the front for one my column. How do I configure excel type default column as text rather than General, when you create the files? I also tried to generate excel file using xml. But I do not know how to set the type of column there, too. I'm using Oracle 11.2.0.3.0 and APEX 4.2.6.00.03. I'll call all these codes apex.

    Code1 is used:

    Declare

    output_header varchar2 (4000);

    fichier_en_sortie VARCHAR2 (255);

    Varchar2 (2) EOL: = Chr (13) | Chr (10);

    BEGIN

    output_header: = 'tls_tracking_id ' | Chr (9) | ' fnn_ext' | Chr (9) | "path_id' | EOL;

    fichier_en_sortie: = 'report_excel' |'. XLS;

    owa_util.mime_header ("application/octet ', false");

    HTP.p ('Content-Disposition: attachment; filename = "" | ") fichier_en_sortie |' « ') ;

    owa_util.http_header_close;

    HTP. PRN (output_header);

    for r in)

    Select tls_tracking_id, fnn_ext, DWD_DTOV_OUT_VW path_id

    where nbn_loc_id = 'LOC000138413115. '

    The order of tls_tracking_id LOOP)

    HTP. PRN (r.tls_tracking_id

    || Chr (9) | r.fnn_ext

    || Chr (9) | r.path_id

    || EOL

    );

    END LOOP;

    END;

    Code2 used :

    create or replace PACKAGE BODY IS pkg_excel_export

    PROCEDURE excel_open (l_xml_body IN OUT NOCOPY CLOB) IS

    BEGIN

    l_xml_body: = ' <? XML version = "1.0" encoding = "ISO-8859-9"? > ' | Chr (10) |

    "< workbook xmlns =" "urn: schemas-microsoft - com:office:spreadsheet" ' | "

    Chr (10) |

    ""xmlns:o ="urn: schemas-microsoft-com ' ' |

    Chr (10) |

    "xmlns: x =" "urn: schemas-microsoft-com: excel" ' | "

    Chr (10) |

    ""xmlns:ss ="urn: schemas-microsoft - com:office:spreadsheet" ' |

    Chr (10) |

                            'xmlns:html=" http://www.w3.org/TR/REC-html40 ">' ||

    Chr (10) |

    ' < ExcelWorkbook xmlns = "urn: schemas-microsoft-com: excel" > ' |

    Chr (10) | ' < WindowHeight > 8580 < / WindowHeight > ' |

    Chr (10) | ' < WindowWidth > 15180 < / WindowWidth > ' | Chr (10) |

    ' < WindowTopX > 120 < / WindowTopX > ' | Chr (10) |

    ' < WindowTopY > 45 < / WindowTopY > ' | Chr (10) |

    ' < ProtectStructure > false < / ProtectStructure > ' | Chr (10) |

    ' < ProtectWindows > false < / ProtectWindows > ' | Chr (10) |

    ' < / ExcelWorkbook > ' | Chr (10) | "< Styles > | Chr (10) |

    '< ss:ID of style = 'Default' ss:Name 'Normal' = >' | Chr (10) |

    "< ss:Vertical alignment = 'Bottom' / >" | " Chr (10) |

    ' < borders / > '. Chr (10) | ' < police / > '. Chr (10) |

    ' < Interior / > '. Chr (10) | ' < NumberFormat / > '. Chr (10) |

    ' < protection / > '. Chr (10) | "< / style > | Chr (10) |

    '< ss:ID of style 's22' = >' | Chr (10) |

    "< x: font family = ss"Swiss":"BOLD"="1"ss:Underline ="Single"/ >" | "

    Chr (10) | "< / style > | Chr (10) | "< / style >";

    END excel_open;

    PROCEDURE excel_close (l_xml_body IN OUT NOCOPY CLOB) IS

    BEGIN

    l_xml_body: = l_xml_body | ' < / workbook > ';

    END excel_close;

    / * Opens a worksheet in the Excel file. , You can open multiple worksheets. **/

    PROCEDURE worksheet_open

    (

    l_xml_body IN OUT NOCOPY CLOB,

    p_worksheetname in VARCHAR2

    ) IS

    BEGIN

    --

    -Create the worksheet

    --

    l_xml_body: = l_xml_body | "' < worksheet ss:Name = ' ' | p_worksheetname |

    "" > < table > ";"

    END worksheet_open;

    / *Farm the worksheet in the Excel file.   **/

    PROCEDURE worksheet_close (l_xml_body IN OUT NOCOPY CLOB) IS

    BEGIN

    l_xml_body: = l_xml_body | ' < / table > < / worksheet > ';

    END worksheet_close;

    / *Opens the tag line * /

    PROCEDURE row_open (l_xml_body IN OUT NOCOPY CLOB) IS

    BEGIN

    l_xml_body: = l_xml_body | "< row >."

    END row_open;

    / *Farm the tag line * /.

    PROCEDURE row_close (l_xml_body IN OUT NOCOPY CLOB) IS

    BEGIN

    l_xml_body: = l_xml_body | "< / row > | Chr (10);

    END row_close;

    / *After the opening of the line, we can write something the first cell* /

    PROCEDURE cell_write

    (

    l_xml_body IN OUT NOCOPY CLOB,

    p_content in VARCHAR2

    ) IS

    BEGIN

    l_xml_body: = l_xml_body | ' < cell > < data ss:Type = "String" > ' |

    p_content | ' < / data > < / cell > ';

    END cell_write;

    / * If you use this package of APEX, you get to download the excel file. **/

    PROCEDURE excel_get

    (

    l_xml_body IN OUT NOCOPY CLOB,

    p_filename in VARCHAR2

    ) IS

    XX BLOB;

    make the NUMBER;

    This NUMBER;

    BC NUMBER.

    LC NUMBER;

    w NUMBER;

    BEGIN

    DBMS_LOB.CREATETEMPORARY (xx, TRUE);

    make: = 1;

    so: = 1;

    BC: = dbms_lob.default_csid;

    LC: = dbms_lob.default_lang_ctx;

    w: = dbms_lob.no_warning;

    DBMS_LOB.converttoblob (xx,

    l_xml_body,

    DBMS_LOB.lobmaxsize,

    do,

    Thus,.

    British Colombia,

    LC,

    (w);

    owa_util.mime_header ("application/octet ', FALSE");

    -set the size so that the browser knows how to download

    HTP.p ("Content-length: ' |") DBMS_LOB.GetLength (xx));

    -the name of the file will be used by the browser if users only one save as

    HTP.p ('Content-Disposition: attachment; filename = "" | ") p_filename |

    '.xls ' | '"');

    -close the headers

    owa_util.http_header_close;

    -Download the BLOB

    wpg_docload.download_file (XX);

    END excel_get;

    END pkg_excel_export;

    I know it's a bit long code, but to better understand please consider...

    Thank you.

    I did worked putting just one extra line in my l_xml_body in the XML (Code 2 used). Now my excel generates with cells type 'Text' and there are no left falling to zero. Also the columns display not scientific format as 2.3D + 12. Current recording shows without default formatting.

    '

  • all of a sudden my text size and pages are small

    pages and text in small characters are small, it happened all of a sudden

    Hi manny402,

    · What is the number and the model of the computer?

    · You work on a laptop or desktop?

    · Is this behavior on a program or a particular application?

    · What is the service pack installed on the computer?

    You can try the steps in the link below and check the results. Link: to increase or decrease the size of objects and text on your screen: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/display_use_large_or_small_fonts.mspx?mfr=true

    With regard to:

    Samhrutha G S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • on my desktop, the icon, (text under the icon) are highlighted, is anyway to have just the text under the icon? Thank you

    on my desktop, the icon, (text under the icon) are highlighted, is anyway to have just the text under the icon? Thank you

    This is probably caused by your background color of your screen.  You can confirm this by:

    If you have a Web page on your screen, then you will need set the color manually by:

    (1) right click on your desktop and select "Properties".
    (2) this should bring up your "Display properties" dialog box  (You can also get it by going to your control panel and double-clicking on 'Display'.)
    3) click on the tab "Office".
    (4) on the bottom right of the dialog box, there is a 'Color' option and below which shows the colors of the office - this must match what you see on the screen.
    (5) simply change the color to whatever color you want and then click on the 'OK' button to close the "display properties".

    If you do not have any web content on your desktop, you can set the transparent icon labels by:

    (1) right-click on 'My Computer' then click 'properties '.
    2) click on the "Advanced" tab
    (3) in the 'Performance' section, click on the button "settings".
    (4) make sure that "shadows fall to use the desktop icon labels" is checked
    5) click on the 'OK' button to get out of the "Performance Options".
    "6) click on the 'OK' button to get out of" System Properties "
    (7) right click on desktop
    (8) mouse on "arrange icons by".
    (9) be sure that "Lock Web items on desktop" is unchecked.  (If it is, just click once.)

  • Creating a popup message confirming the sending of form ONLY if all fields are correctly entered

    I use and learn Dreamweaver 2015.  I created a few forms to a Web site for a project, and while I got the correct validation for some fields (name required in the field name) settings, a valid email address for field email, etc, I can't find a way to bring up a window confirming the correct presentation if the fields have been correctly entered on the form.  If the fields are free of errors, I want to say something like "thanks for your message.  You should hear from us shortly. "I am limited to HTML5 and javascript.

    Thanks in advance!

  • How can I restrict people to print, save or send the form unless all required fields are filled?

    I made a form with several fields. The form will be on an intranet page, and people will be able to download the form, fill it out and save you, by post or print it out.

    However, I want to fill all the required fields. How can I prevent that people are able to save, send or print the form when some required fields are not filled.

    It is not possible. But you can post a message.

  • After the update of Photoshop 2015 CC welcomes "check spelling...". "and"find and replace text... "are disabled.

    Welcomes to "check spelling...". "and"find and replace text... "are disabled after I updated to Photoshop 2015 CC.

    Does anyone have a solution?

    Thank you
    Eli

    Someone has found a work around that.

    The link below.

    But is not ideal could be useful as the current problems with the point highlight text/right click on/off "check spelling" options disabled after that update CC 2015 is ruining your workflow.

    Spellchecker not available in Photoshop CC 2015

  • Hello, I want to DPS magazin for IOS and Android with a lot of text notes. There are about 200 notes per article. The idea is to make windows pop-up as EPUB 3.0. Help, please.

    Hello, I want to DPS magazin for IOS and Android with a lot of text notes. There are about 200 notes per article. The idea is to make windows pop-up as EPUB 3.0. Please help., Hello, I want to DPS magazin for IOS and Android with a lot of text notes. There are about 200 notes per article. The idea is to make windows pop-up as EPUB 3.0. Help, please.

    Remember that only you can create an iPad app using your simple editing solution (which is included in your subscription CC). So you need a Pro or business of DPS version to be able to create a Android version.

    You can create pop-ups in InDesign using slide show options and a multi-state object. But it's all manual work, then you're going to spend a lot of time on this point, also depending on the layout of your design.

  • Download my web page of muse newly formed to crazy without BC areas?

    Download my web page of muse newly formed to crazy without BC areas?

    Hello

    If you want to say, you have created new Web pages in Muse and now you want to transfer to Crazydomain, then yes it canbe done. You can use either uplod to OTF in the file menu option, or try to export your site in HTML format, and then upload it via FTP client.

    If you are looking for something different, please add more details.

  • Right side of the text in the report are cut during report generated in PDF format

    Right side of the text in the report are cut during report generated in PDF format.
    In the report layout text is FLUSH JUSTIFIED. Text block is the same size as the outer frame.
    When the report is generated in PDF format, text is only JUSTIFIED to the LEFT and to the right looks like cut. Text beyond frame is invisible.
    But when I text selection in the PDF report that all the text is selected and I can copy and paste this text into any editor.
    What is a cause of this error and how can I solve this problem? In my view, there is error in report engine.
    Report Server Version: 10.1.2.3.0

    See photo. [http://1.bp.blogspot.com/_tSW8j23gT08/TKXn84zyRMI/AAAAAAAAAGE/KkNibanTSao/s1600/report_error.JPG]

    Don't know what your operating system and it could make a difference. If you're on Unix/Linux, try changing the uifont.ali file. (make a backup first!).

    Here is an example of the changes that I made to correct a similar problem:

    # Mapping of MS Windows

    #Arial = helvetica
    # 'Courier New' = courier
    # "Times New Roman" = times
    #Modern = helvetica
    #"MS Sans Serif" = helvetica
    # "MS Serif" = times
    # "Small fonts" = helvetica

    #Arial = 'arial.ttf '.
    Arial = helvetica.8
    "Courier New" = courier.9
    Arial.12 = helvetica.8
    #helvetica.12.Bold = helvetica.9
    #ArilMT is helvetica.9
    # "Albertus Extra Bold" = helvetica.9

    [PDF]

    #Arial = courier
    #arial = courier

    # Support for the languages of the far East:

    #itcadvantgardegothic = arial
    # "ITC front guard Gothic" = arial
    #itcadvantgardegothic = arial
    # "ITC Avant Garde Gothic" = Arial
    # changed to courier 06-25-2009
    itcadvantgardegothic = Helvetica
    #itcadvantgardegothic = arial
    "ITC Avant Garde Gothic" = Helvetica.11

    # Required
    #itcadvantgardegothic = arial
    # "ITC Avant Garde Gothic" = Arial

    [PDF:Subset]

    #times = "times.ttf".
    #courier = "cour.ttf.
    #helvetica = 'arial.ttf '.
    #arial = 'arial.ttf '.
    #helvetica = 'arial.ttf '.
    # 'Avant Garde' = 'arial.ttf '.
    #arial = 'arial.ttf '.
    #helvetica = 'arial.ttf '.
    #arial = 'arial.ttf '.
    #itcadvantgardegothic = 'arial.ttf '.
    #helvetica = 'arial.ttf '.
    #courier = "cour.ttf.

  • Texts of Web sites are buged...

    In the websites, some texts are bug, but if I choose this text, text debug...

    here an impression: http://i.imgur.com/sSm9BLw.png

    As you can see, have some texts put on listening... So, how can I fix it?

    Kind regards.

    This looks like a problem with hardware acceleration.

    Try the pref gfx.content.azure.enabled set to false or if this does not help disable Direct2D by setting the pref gfx.direct2d.disabled true on the subject: config page and leave hardware acceleration enabled otherwise.

    This way you still have the advantage of hardware acceleration, but can not suffer rendering problems.

    Otherwise try disabling hardware acceleration in Firefox (you will need to close and restart Firefox).

  • Creating forms (text fields)

    I use the classroom in a book "Adobe Acrobat X ISBN-13 978-0-321 - 75125 - 6.

    In Lesson 10 page 253, I finished all the properties for the"Order_Start.pdf" when I entered the data in the 'price' and the 'quantity' the 'total' to this line updated as usual; However, the "total commander" would not update until his area of the property was opened and the tab 'calculate' was opened and 'choose' tab was pressed and 'selection field' box was open and then closed. (All total boxes are always selected) When the pdf file was returned to the normal state, updates "the order total.

    I tried to open the file in Adobe Reader and it still does not work.

    If I can get it work, I'll tax the worksheets with the text fields of the pdf tax phamplet.

    Am I missing a step

    You must ensure that the order of computation of field is set to everything that makes sense for the form. Exactly how do you this depends on which version of Acrobat you are using. In Acrobat 11:

    Forms > change

    and then:

    Tasks > other tasks > set field calculation order

  • EBS forms differ from the General forms

    Hello

    I would be very grateful if someone could clarify whether or not the functionality associated with the creation and deployment of Oracle EBS forms is the same as for 'General' forms No information on that or useful links would be greatly appreciated.

    Kind regards

    Kevin.

    Hello

    Forms of apps are similar to regular forms except that you have to consider two things when you customize these forms (use TEMPLATE.fmb, copy the files of PLL,... etc).

    Example Code to customize Applications [ID 744065.1] PERSONALIZED library
    Oracle Forms Applications in FAQ [ID 177610.1]
    How to customize the Standard Oracle Application using custom library [ID 438920.1]
    Integration of Applications with Oracle Applications Release 11i [ID 176852.1]
    Policy support Oracle about customization [122452.1 ID]

    Oracle Application Developer's Guide
    http://www.Oracle.com/technetwork/documentation/applications-167706.html

    Creation of custom form for Oracle Applications 11i Linux
    Creation of custom form for Oracle Applications 11i Linux

    Custom forms
    http://forums.Oracle.com/forums/search.jspa?threadID=&q=custom+forms&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    Developer of custom forms 6i 10g 11i, R12
    http://forums.Oracle.com/forums/search.jspa?threadID=&q=custom+forms+developer+6i+10G+11i+R12&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    Thank you
    Hussein

  • How to change the highlight color, click the button image and text and sound.  are there packages of buttons for use in my project?

    How to change the highlight color, click the button image and text and sound. are there packages of buttons for use in my project?

    Hello

    Even if the point of things based Web links buttons created using them is of simple images. Captivate uses simple images. If you need to put your creative hat and not to let the fact that you see the word 'web' scared you somehow. An image is an image. Use on the web, use Captivate. Same case!

    If you change the properties of the button, you can activate the legend of success. Fix any sound that you like with the legend of success and it will play when you click the button. If you do not want to see the legend of success, delete the text and configure it as transparent.

    See you soon... Rick

    Useful and practical links

  • Libraries - advice/guidance

    I have just the 1 photo library that contains 25 000 photos in albums.  All these pictures are in the order of the folder, either by the way, I put records together, IE

    • January 2016 MOM birthday
    • London trip January 2016

    The problem I found is that it raises photos very slow and I get the spinning wheel many time so just sit and wait.

    I thought to split the Library Archives of every year, but before that let me in that I have a few questions:

    1. If you have a lot of libraries, how are you going to make photo books that extend over several years?

    2. If you want to watch the facial recognition for a particular person and all the photos are in different libraries how to work it? (I guess that if you have 20 albums to archive, you need to watch each library?)

    I do a lot of photo for gift books, so I'm just worried if I have divided into different archives libraries it's going to cause me more work in the long term.

    Any help or advice would be really appreciated.

    Thank you

    The problem I found is that it raises photos very slow and I get the spinning wheel many time so just sit and wait.

    The size of the library should not cause of slowness, so splitting the library will not help; It will make it just impossible to search through libraries and access to all the photos from the media browser.

    My library has 40000 photos and I do not see the spinning wheel all in pictures.

    1. If you have a lot of libraries, how are you going to make photo books that extend over several years?

    2. If you want to watch the facial recognition for a particular person and all the photos are in different libraries how to work it? (I guess that if you have 20 albums to archive, you need to watch each library?)

    To create a slide show or a book, you need to move all the photos you need to the same library.  PowerPhotos can help to move photos between libraries, but frankly, I would like to avoid having to split the library and find the reason for the slowness.

    The typical motives of pictures its slowness could be:

    1. Your system drive may be running out of storage.  You have at least 10 GB of free storage on your system disk?
    2. Treatment after importing photos - the rendering of previews and recognition of faces in the background they need a lot of time.  Did you give Photos enough time to complete processing after you import photos and videos in the background? Let it run all night to get there.
    3. The photo library can have corruption. Then, it would be useful to fix the library.
    4. Access to the network.  your photo library is stored on a NAS? This is not recommended.
    5. Cleaning software.  If you leave applications as CleanMyMac delete auxiliary files in your library, Photos will be slow, because there recreate them whenever you raise the Photos.
    6. Photos will be slower than usual. If you use cloud photo library with storage optimization enabled, because the pictures must be uploaded to iCloud.
    7. If your library contains media that cannot be treated, Photo may get stuck on the treatment of items, that it cannot process.  You have videos or Photos with unusual format in your library?

Maybe you are looking for

  • How can I find my favorites?

    In the last few itterations of Firefox I not was able to work at all bookmarks. The first problem is, you save a bookmark, but where does it go? In most of the browsers and Firefox until a few months ago, the bookmark is immediately visible in the li

  • product name: Pavilion g6-2255sx problem: speakers are not working correctly

    Sometimes I turn on the computer and the speakers do not work but after reboot they begin to function normally... when I go into the control panel and try to test the speakers a poster error that looks like this "This device is used by another applic

  • SSL certificate has expired for the endpoints BlackBerry push last Thursday!

    There is a generic cert used for endpoints BlackBerry push Eval expired last Thursday.  My embed code for the push service is the appropriate certificate validation and can no longer send.  I checked several end points of cpNNNN.pushapi.eval.blackber

  • Size limit of 64 KB in the attachment?

    Hello is true that the size of an attachment sent by e-mail via the API cannot be more than 64 k? I'm not able to find an official confirm on this on the basis of knowledge of BB / documentation. To me, this seems very strange and limiting. Thank you

  • PC freezes

    PC hangs during the time or a few seconds then release with a "bong".