How to make a TOC in PHP?

I would like to publish all camping-information on www.camplink.eu also in pdf-format for offline use.
For that I use PHP to generate the pdf. However, it's been so much information that a TOC or internal links are necessary.
Someone with this experience?
Thanks in advance, Hendrik.
Webmaster of CampLink

I think you will more likely find that experience in http://forums.adobe.com/community/acrobat/acrobat_sdk

Similar Messages

  • How to make this work in php

    Hello,
    I am fairly new to php and am having problems working out the
    best way to go about doing what i want to do.
    I want users of my system to be able to choose from a
    selection of images which they have earlier uploaded. I am using a
    system where the picture show is the one with the number 1 in the
    `use` colum of a mysql database, only i dont know how to make it so
    a user can change that number.
    Any help will be greatly appreicated weather that is how to
    get the above to work , or ideas of a different system i could use
    to have the same effect,
    thank you,
    James

    From the problem you're describing, I would set it up like
    this:
    Db1_Table 1 (tbl_Images)
    Columns
    1) id
    2) image_location
    Db1_Table 2 (tbl_UserPrefs)
    1) id
    2) user_name
    etc...
    x) image_location
    So, in your user preferences, use a dynamic drop down. The
    values will come from Db1_Table 1.
    When the user submits the changes to his preferences, the
    value from the dynamic drop down will go into Db1_Table 2.
    You'll need to have 2 Recordsets for this to work, of course.
    edit: you can also have something else besides a drop down,
    ex: autocomplete text field or option buttons.

  • How to make a TOC link to comments?

    Hi,
    I've annotated several PDF documents with GoodReaer, and have used their annotation tools to insert comments within certain blocks of text.  I've been using the same categories for these comments, so that they essentially function as tags.  I'm planning to fuse these PDF documents together into one master document, and then I was planning to create a Table of Contents.  I'm wondering how I can create a Table of Contents that can do the following:
    -Correspond to all the comments -- i.e., so every time I mention "banana" in a comment, it corresponds with the Banana heading in the TOC
    and...
    -Have a TOC that is also organized by comment and subject -- i.e., "banana", and a subsection for when it's mentioned by "John," "Mary," Phil", etc.
    Ideally, I'd like to be able to group both -- so that I can see all mentions of "banana" as a whole, and then broken down by citaions of "banana" and the subjects that correspond to them (e.g., "John," "Mary," Phil", etc.).
    Make sense?
    Thanks in advance for any help you can provide...

    This might be possible to do with a script, but since it is a very
    customized task I don't think you'll find any code samples that will help
    you do it. Also, there's the question of what kind of comments GoodReader
    generated.
    If you're interested, you can send me some sample files to
    [email protected] I could let you know if I think it's doable.

  • How to make this content in PHP?

    create or replace package body VV_OM110_PKG is
    procedure main(errbuf out varchar2,
    retcode out varchar2,
    p_org_id in number,
    p_organization_id in number,
    p_segment1 in varchar2,
    p_company in varchar2,
    p_segment3 in varchar2,
    p_cust_id in number,
    p_category in varchar2,
    p_beg_date in varchar2,
    p_end_date in varchar2) is
    v_line VARCHAR2(3000);
    v_sub_title varchar2(100);
    begdate varchar2(20);
    enddate varchar2(20);
    v_company varchar2(50);
    v_item_count number:=0;--产品品种数
    v_rowsumqty number;--行数量汇总
    v_rowsumamt number;--行金额汇总
    v_total_qty number:=0;
    v_total_amt number:=0;
    i_counter number := 0;
    v_subinventory_name varchar2(80);
    v_label1 varchar2(20);
    v_column1 varchar2(60);
    v_phone_number varchar2(30);
    type rec_qty is record(
    id number,
    qty number,
    amt number);
    type number_array is table of number index by binary_integer;
    v_sumqty_per_com number_array;--每公司数量合计
    v_sumqty_all_com number_array;--所有公司数量合计
    v_sumamt_per_com number_array;--每公司金额合计
    v_sumamt_all_com number_array;--所有公司金额合计
    arr_item_id number_array;--产品游标的ITEM_ID
    type qty_array is table of rec_qty index by binary_integer;
    arr_qty qty_array;--qty游标记录数组
    cursor main is
    select distinct
    a.sales_branch,
    a.carrier,
    a.customer_name,
    a.trx_date,
    a.order_number,
    a.delivery_id
    from vv_wsh_temp_tl a,mtl_secondary_inventories b
    where to_char(a.subinventory_code) = b.secondary_inventory_name
    and b.organization_id = decode(p_organization_id,p_org_id,b.organization_id,p_organization_id)
    and nvl(b.attribute1,'~~$') = decode(p_org_id,81,'内地厂',nvl(b.attribute1,'~~$'))
    and a.qty<>0
    and not exists (select 'X' from org_organization_definitions t
    where t.ORGANIZATION_ID in(86,87,89,90,91,92,93,94,95,96,97,98,99,100,110)
    and t.OPERATING_UNIT = 85
    and t.organization_id = a.organization_id);
    rec_main main%rowtype;
    cursor qty(l_delivery_id number,l_order_number number,l_trx_date varchar2) is
    select inventory_item_id,sum(qty) qty,sum(amt) amt
    from vv_wsh_temp_tl
    where delivery_id = l_delivery_id
    and order_number = l_order_number
    and trx_date = l_trx_date
    group by inventory_item_id;
    CURSOR ITEM IS
    select distinct g.segment1,h.segment1 seg1,a.inventory_item_id id,h.description des
    from vv_wsh_temp_tl a,
    MTL_ITEM_CATEGORIES_V g,
    mtl_system_items_b h
    where a.inventory_item_id=h.inventory_item_id
    and g.inventory_item_id=h.inventory_item_id
    and g.organization_id=h.organization_id
    --and a.sales_branch = nvl(p_company,a.sales_branch)
    --and a.customer_number = nvl(p_cust_number,a.customer_number)
    and h.organization_id = a.organization_id
    and h.organization_id = decode(p_organization_id,p_org_id,h.organization_id,p_organization_id)
    and not exists (select 'X' from org_organization_definitions t
    where t.ORGANIZATION_ID in(86,87,89,90,91,92,93,94,95,96,97,98,99,100,110)
    and t.OPERATING_UNIT = 85
    and t.organization_id = a.organization_id)
    order by g.segment1,h.segment1,a.inventory_item_id;
    Cursor subinventory_name(l_delivery_id number,l_order_number number,l_trx_date varchar2) Is
    Select Distinct substr(b.description,decode(p_org_id,81,8,82,7,5)) subinventory
    From vv_wsh_temp_tl a,mtl_secondary_inventories b
    Where to_char(a.subinventory_code) = b.secondary_inventory_name
    and b.organization_id = a.organization_id
    --and b.organization_id = decode(p_organization_id,p_org_id,b.organization_id,p_organization_id)
    and a.delivery_id = l_delivery_id
    and a.order_number = l_order_number
    And a.trx_date = l_trx_date
    And a.qty <> 0;
    Cursor phone_number(l_phone_number varchar2) is
    select a.phone_number
    from wsh_carriers w,
    wsh_carrier_contact_info_v a,
    wsh_carrier_contacts_v b
    where w.carrier_id = b.carrier_id
    and a.relation_party_id = b.relation_party_id
    and w.freight_code = l_phone_number;
    begin
    commit;
    vv_wsh_pkg.retrieval_data(
    p_org_id => p_org_id,
    p_organization_id => p_organization_id,
    p_subinventory_code => null,
    p_area => p_segment1,
    p_company => p_company,
    p_market => p_segment3,
    p_cust_id => p_cust_id,
    p_category => p_category,
    p_item_number => null,
    p_beg_date => p_beg_date,
    p_end_date => p_end_date);
    /*&#20135;&#21697;&#30340;&#31181;&#31867;&#25968;&#37327;*/
    select count(distinct a.inventory_item_id) into v_item_count
    from vv_wsh_temp_tl a,
    MTL_ITEM_CATEGORIES_V g,
    mtl_system_items_b h
    where a.inventory_item_id=h.inventory_item_id
    and g.inventory_item_id=h.inventory_item_id
    and g.organization_id=h.organization_id
    and h.organization_id = a.organization_id
    --and a.subinventory_code=nvl(p_subinventory_code,a.subinventory_code)
    and h.organization_id= decode(p_organization_id,p_org_id,h.organization_id,p_organization_id)
    and not exists (select 'X' from org_organization_definitions t
    where t.ORGANIZATION_ID in(86,87,89,90,91,92,93,94,95,96,97,98,99,100,110)
    and t.OPERATING_UNIT = 85
    and t.organization_id = a.organization_id);
    for i in item loop
    v_item_count := item%rowcount;
    end loop;
    for i in 1..v_item_count loop
    v_sumqty_per_com(i):=0;
    v_sumqty_all_com(i):=0;
    v_sumamt_per_com(i):=0;
    v_sumamt_all_com(i):=0;
    arr_item_id(i) := 0;
    end loop;
    --&#32452;&#21512;&#26597;&#35810;&#35828;&#26126;
    --v_sub_title := '';
    if p_company is not null then
    v_sub_title := p_company||'/';
    end if;
    if p_category is not null then
    v_sub_title := v_sub_title||p_category;
    end if;
    if p_beg_date is not null then
    Begdate := substr(p_beg_date,1,4)||'&#24180;'||substr(p_beg_date,5,2)||'&#26376;'||substr(p_beg_date,7,2)||'&#26085;'||substr(p_beg_date,9);
    v_sub_title := v_sub_title || Begdate ||' -' ;
    if p_end_date is null then
    v_sub_title := v_sub_title ||'&#33267;&#20170;';
    end if;
    end if;
    if p_end_date is not null then
    Enddate := substr(p_end_date,1,4)||'&#24180;'||substr(p_end_date,5,2)||'&#26376;'||substr(p_end_date,7,2)||'&#26085;'||substr(p_end_date,9);
    v_sub_title := v_sub_title || Enddate ||' -' ;
    if p_beg_date is null then
    v_sub_title := v_sub_title ||'&#33267;&#20170;';
    end if;
    end if;
    if substr(v_sub_title,-1,1) = '/' or substr(v_sub_title,-1,1) = '-' then
    v_sub_title := substr(v_sub_title,1,length(v_sub_title)-1);
    end if ;
    -----------------------&#26631;&#39064;-----------------
    v_line := '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">'||
    '<html><head><title>&#36135;&#29289;&#27969;&#21521;&#34920;</title></head><body>';
    fnd_file.put_line(fnd_file.output,v_line);
    v_line:='<table border="0" cellpadding="1" cellspacing="0" width="100%">
    <tr height="50" align="center">
    <td align="center" nowrap valign="middle" colspan ="2" ><B><p align="center">
    <font face="&#23435;&#20307;" color="red" size="3">&#36135;&#29289;&#27969;&#21521;&#34920;</font></B></p></td>
    </tr>';
    fnd_file.put_line(fnd_file.output,v_line);
    v_line:='<tr>
    <td align="left"><font face="&#23435;&#20307;" color="black" size="2">'||v_sub_title||'</font></td>
    <td align="right"><font face="&#23435;&#20307;" color="black" size="2"> </font></td>
    </tr>';
    fnd_file.put_line(fnd_file.output,v_line);
    --&#20083;&#19994;&#38656;&#35201;&#21333;&#25454;&#21495;&#65292;&#32780;&#32929;&#20221;&#38656;&#35201;&#20132;&#36135;&#21495;
    select decode(p_organization_id,82,'&#21333;&#25454;&#21495;','&#20132;&#36135;&#21495;') into v_label1 from dual;
    v_line :='<tr><td colspan="2"><table border="1" cellspacing="0" cellpadding ="4" width ="100%">
    <tr style = "font-size=12px" bgcolor="#cccccc">
    <td nowrap rowspan="2" valign="middle" align="center"> <b>' || v_label1 || '</b></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    if p_org_id = 84 then
    v_line :='<td nowrap rowspan="2" valign="middle" align="center"> <b> &#21333;&#25454;&#21495;</b></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    end if;
    v_line :=' <td nowrap rowspan="2" valign="middle" align="center"> <b> &#20998;&#20844;&#21496;</b></td>
    <td nowrap rowspan="2" valign="middle" align="center"> <b> &#38656;&#36135;&#21333;&#20301;</b></td>
    <td nowrap colspan="'||to_char(v_item_count)||'" valign="middle" align="center"><b>&#21697;&#31181;&#21450;&#25968;&#37327;&#65288;&#21333;&#20301;&#65306;&#20214;&#65289;</b></td>
    <td nowrap rowspan="2" valign="middle" align="center"> <b> &#21512;&#35745;</b></td>
    <td nowrap rowspan="2" valign="middle" align="center"> <b> &#21551;&#36816;&#26085;&#26399;</b></td>
    <td nowrap rowspan="2" valign="middle" align="center"> <b> &#25215;&#36816;&#20154;</b></td>
    <td nowrap rowspan="2" valign="middle" align="center"> <b> &#25215;&#36816;&#20154;&#30005;&#35805;&#21495;&#30721;</b></td>
    <td nowrap rowspan="2" valign="middle" align="center"> <b> &#35746;&#21333;&#21495;</b></td>
    <td nowrap rowspan="2" valign="middle" align="center"> <b> &#29983;&#20135;&#21378;</b></td>
    </tr><tr bgColor="#cccccc" style = "font-size=12px">';
    fnd_file.put_line(fnd_file.output,v_line);
    for rec_item in item loop
    v_line := '<td valign="middle" align="center"><b>' || rec_item.des || '</b></font></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    arr_item_id(item%rowcount) := rec_item.id;
    end loop;
    v_line := '</tr>';
    fnd_file.put_line(fnd_file.output,v_line);
    ------------------&#20027;&#20307;-------------------------------
    open main;
    loop
    fetch main into rec_main;
    ---------------------&#20844;&#21496;&#27719;&#24635;--------------------------------------
    If (v_company Is Not Null And v_company <> rec_main.sales_branch) Or main%Notfound Then
    if p_org_id = 84 then
    v_line := '<tr bgcolor="#ccffff" style = "font-size=12px">
    <td nowrap colspan="4" valign="middle" align="center"><b>' || v_company || '&#23567;&#35745;</b></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    else
    v_line := '<tr bgcolor="#ccffff" style = "font-size=12px">
    <td nowrap colspan="3" valign="middle" align="center"><b>' || v_company || '&#23567;&#35745;</b></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    end if;
    for i in 1..v_item_count loop
    v_line :='<td nowrap valign="middle" align="right"><b>' || v_sumqty_per_com(i) || '</b></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    v_sumqty_per_com(i) := 0;
    v_sumamt_per_com(i) := 0;
    end loop;
    v_line :='<td nowrap valign="middle" align="right"><b>' || v_total_qty || '</b></td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>';
    fnd_file.put_line(fnd_file.output,v_line);
    v_total_qty := 0;
    v_total_amt := 0;
    end if;
    exit when main%notfound;
    v_rowsumqty := 0;
    v_rowsumamt := 0;
    v_company := rec_main.sales_branch;
    --&#21462;&#24471;&#20083;&#19994;&#21333;&#25454;&#21495;
    if p_organization_id = 82 then
    v_column1 := vv_wsh_pkg.get_bill_of_doc_number(rec_main.delivery_id);
    else
    v_column1 := rec_main.delivery_id;
    end if;
    v_line := '<tr style = "font-size=12px">
    <td nowrap valign="middle">' || v_column1 || ' </td>';
    fnd_file.put_line(fnd_file.output,v_line);
    if p_org_id = 84 then
    v_line := '<td nowrap valign="middle">' || vv_wsh_pkg.get_bill_of_doc_number(rec_main.delivery_id) ||' </td>';
    fnd_file.put_line(fnd_file.output,v_line);
    end if;
    v_line := '<td nowrap valign="middle">' || rec_main.sales_branch || '</td>
    <td nowrap valign="middle">' || rec_main.customer_name || '</td>';
    fnd_file.put_line(fnd_file.output,v_line);
    for rec_qty in qty(rec_main.delivery_id,rec_main.order_number,rec_main.trx_date) loop
    arr_qty(qty%rowcount).id := rec_qty.inventory_item_id;
    arr_qty(qty%rowcount).qty := rec_qty.qty;
    arr_qty(qty%rowcount).amt := rec_qty.amt;
    v_rowsumqty := v_rowsumqty+arr_qty(qty%rowcount).qty;
    v_rowsumamt := v_rowsumamt+arr_qty(qty%rowcount).amt;
    i_counter := qty%rowcount;
    end loop;
    for i in 1..arr_item_id.count loop
    for j in 1..i_counter loop
    if arr_qty(j).id = arr_item_id(i) then
    v_line := '<td nowrap valign="middle" align="right">' || to_char(arr_qty(j).qty) || '</td>';
    v_sumqty_per_com(i) := v_sumqty_per_com(i)+arr_qty(j).qty;
    v_sumqty_all_com(i) := v_sumqty_all_com(i)+arr_qty(j).qty;
    v_sumamt_per_com(i) := v_sumamt_per_com(i)+arr_qty(j).amt;
    v_sumamt_all_com(i) := v_sumamt_all_com(i)+arr_qty(j).amt;
    exit;
    else
    v_line := '<td nowrap valign="middle"> </td>';
    end if;
    end loop;
    fnd_file.put_line(fnd_file.output,v_line);
    end loop;
    --&#29983;&#20135;&#21378;&#21517;&#31216;
    for rec_subinventory in subinventory_name(rec_main.delivery_id,rec_main.order_number,rec_main.trx_date) loop
    If subinventory_name%Rowcount = 1 Then
    v_subinventory_name := rec_subinventory.subinventory;
    else
    v_subinventory_name := v_subinventory_name || ',' || rec_subinventory.subinventory;
    End If;
    end loop;
    --&#25215;&#36816;&#20154;&#30005;&#35805;
    for rec_phone_number in phone_number(rec_main.carrier) loop
    If phone_number%Rowcount = 1 Then
    v_phone_number := rec_phone_number.phone_number;
    else
    v_phone_number := v_phone_number || ',' || rec_phone_number.phone_number;
    End If;
    end loop;
    /* begin
    select a.phone_number into phone_number
    from wsh_carriers w,
    wsh_carrier_contact_info_v a,
    wsh_carrier_contacts_v b
    where w.carrier_id = b.carrier_id
    and a.relation_party_id = b.relation_party_id
    and w.freight_code = rec_main.carrier;
    exception when others then
    phone_number := '';
    end; */
    v_line := '<td nowrap valign="middle" align="right"> <font color="#0000FF">'||v_rowsumqty||'</td>
    <td nowrap valign="middle">' || rec_main.trx_date ||'</td>
    <td nowrap valign="middle">' || rec_main.carrier ||' </td>
    <td nowrap valign="middle">' || v_phone_number ||' </td>
    <td nowrap valign="middle">' || rec_main.order_number ||'</td>
    <td nowrap valign="middle">' || v_subinventory_name ||'</td>
    </tr>';
    fnd_file.put_line(fnd_file.output,v_line);
    v_total_qty := v_total_qty+v_rowsumqty;
    v_total_amt := v_total_amt+v_rowsumamt;
    v_phone_number := '';
    end loop;
    close main;
    commit;
    --------------------&#25968;&#37327;&#27719;&#24635;------------------------------------
    if p_org_id = 84 then
    v_line := '<tr bgcolor="#cccccc" style = "font-size=12px">
    <td nowrap colspan="4" valign="middle" align="center"><b>&#24635;&#35745;</b></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    else
    v_line := '<tr bgcolor="#cccccc" style = "font-size=12px">
    <td nowrap colspan="3" valign="middle" align="center"><b>&#24635;&#35745;</b></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    end if;
    for i in 1..v_item_count loop
    v_line :='<td nowrap valign="middle" align="right"><b>' || v_sumqty_all_com(i) || '</b></td>';
    fnd_file.put_line(fnd_file.output,v_line);
    v_total_qty := v_total_qty+v_sumqty_all_com(i);
    v_total_amt := v_total_amt+v_sumamt_all_com(i);
    end loop;
    v_line :='<td nowrap valign="middle" align="right" ><b>' || v_total_qty || '</b></td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    </tr>';
    fnd_file.put_line(fnd_file.output,v_line);
    v_line := '</table></td></tr></table></body></html>';
    fnd_file.put_line(fnd_file.output,v_line);
    end main;
    end VV_OM110_PKG;
    how to use php write this ?
    can who help me?

    Perhaps a shorter example would be more appropriate to ask about.
    Use bbcode code tag http://www.phpbb.com/phpBB/faq.php?mode=bbcode#5 to enclose code.
    -- cj

  • How to make landscape TOC appear similar to portrait TOC?

    I would like to author a media-rich scholarly article in landscape mode in iBooks Author.  The only thing is that I want the table of contents to appear like it does in portrait mode, i.e. as a list of sections on one single page rather than making the user do page swipes to get access to different sections.  I noticed, in the landscape table of contents in the E.O. Wilson book, that within each chapter page there are sub-sections that, when touched, take users to different parts of the chapter. In essence, that's what I want for my entire article, i.e. to have a single page in the landscape TOC but with 15 sub-sections listed that link to the various article sections (and I also don't want the words "Chapter 1" or "Section 1" to appear on this page because that wouldn't be accurate).  And thoughts about how to do this?

    I was using the iPAD 2 Starter Guide ibook as well as the iPAD User Guide as examples of what a good ibook would look like and I can not figure out how to get the table of contents to show like they do using ibooks author.  In landscape, the TOC at the bottom of the page is pretty much unusble due to the small size.  Since Apple doesn't do it this way how can we have ibooks author show it like they do?  I also want to show the cover on the left side and the TOC on the right inlandscape mode.

  • How to make HTTP connection between a midlet and a php server?

    As the title above, can anyone share how to make a HTTP connection between those 2? J2ME and PHP. Thanks a lot!

    Can you be a little more specific on what you really want.
    When i started doing j2me application, i was required to be able to comunicate to a oracle client database, and my first though was using PHP based pages to comunicate and do the query. Later they would just generate the answer and get it on the cellphone. You can communicate with a PHP server via either GET or POST. I'd choose POST as is more secure IMO.
    Here are quite a good ammount of examples of how you can do it
    http://www.java2s.com/Code/Java/J2ME/Networks.htm
    They aren't PHP based examples, but you have can an idea of how it can be done

  • How to make a Previous/Next Menu

    Hi there.  This is my first time posting in the Adobe forums so please be patient if I don't do things correctly.
    I currently have the Adobe Web Design CS5 package and all the programs that come with it, but my question is specifically about Dreamweaver.  My computer is a Macbook with the latest operating system as far as I know.
    I've been trying to create a next/previous menu for parts of my own personal website.  It's http://www.aidenart.com . If you click on the link to the Concept Art page you should see a bunch of image thumbnails that act as links.  Click on any one of those images and you're suppose to see the full image from the thumbnail in a whole new page.  On the pages with the full images I would like to include, at the bottom, a jump menu so that a visitor can pick any of the pages that they might want to see (I already know how to do this part), but I would also like to include buttons which allow the visitor to visit the next image in the list and also the previous one in the list.  You know, a previous and next menu.  I've seen other websites using those kinds of buttons so I know it's possible somehow.
    By looking at the source code of some websites and doing a bit of research on my own, I think this can be done using javascript of some kind.  Maybe by using an "onClick" behaviour or something.  I looked at a few different web help sites, including W3 Schools, and I still haven't found any clear cut explanations on how to make a previous/next menu.  If someone could just show me the basic code for making a simple one that actual works then I could probably work from that.
    I would prefer it if I didn't have to bother with the dreamweaver extenstions section because most things listed in the exchange are something you have to pay for.  And for those of you who think I should just make individual links on each page, please keep in mind that I'll want to add more pages in the future.  Most likely a lot of pages.  I also want to be able to make previous/next menus for the comics section of my website for when I have more comic pages available, so I really need to know how to do this.
    I hope that was enough information for you guys.  I can try to provide code if you guys want although I'm not sure how that would help solve my current problem.

    Only way to do pagination effectively requires either a database or XML files containing your data.  Neither way is really for a beginner based on my experience with both.  And based on the size of your library right now, pagination isn't what you really need.
    If it is going to be an image gallery you could look into the php Gallery script if you have a mySQL database ( http://gallery.menalto.com/ ).  But for simple solutions.
    For even smaller solutions you can look to JQuery solutions.  They require minimal amounts of coding, mostly just file inclusions.
    http://galleria.aino.se/
    http://fancybox.net/
    http://www.twospy.com/galleriffic/#1
    It's just about finding one that meets your needs and gives you the ability to customize as you see fit.

  • How to make an 'order' button that works?

    How do I make an 'order' button, by clicking on it, will post a pre-defined product number in a contactform?
    Probably I have to use php, but I do not know how to make the correct script.
    Regards, Gerald

    If you just need it to pop text into a textfield, you can use javascript, something like this might do the trick for you...
    <textarea id="TheText"></textarea>
    <select id="DropDown">
        <option value="">None</option>
        <option value="text-one">Choice One</option>
        <option value="text-two">Choice Two</option>
        <option value="text-three">Choice Three</option>
        <option value="text-four">Choice Four</option>
    </select>
    <script type="text/javascript">
        var thetextbox = document.getElementById('TheText');
        var mydropdown = document.getElementById('DropDown');
        mydropdown.onchange = function(){
        thetextbox.value = this.value;
    </script>
    The script should come after the textbox and dropdown in your HTML.

  • I created a form and I'm not sure how to make the 'submit' button send me the collected information.

    Hello everybody. I am a web designer (NOT a developer)
    I created a form and I'm not sure how to make the 'submit' button send me the collected information.
    I have used phpform.org/ to custom build a submission form. Then I opened that html in dreamweaver (so that I could edit colors, fonts, and delete the phpform.org advetisement)
    Now I need to link the 'submit button' so that it will e-mail me the completed form.
    (formphp.org wants me to subscribe to a servie that I pay for in order to have the form e-mailed to myself.)
    (after I get the submit button linked to an e-mail I will pull the html of my completed form into Muse- but I don't think that is really relevent)
    I'm sure one of you can help point me in the right direction! I can't write my own code so detailed help is appreciated!
    -Brenna
    The e-mail I would like the form sent to is:
    [email protected]
    Here is the the code for my form 'as is' :
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Create a Profile</title>
    <link rel="stylesheet" type="text/css" href="file:///C|/Users/Tommy/AppData/Local/Temp/Temp1_form.zip/form/view.css" media="all">
    <script type="text/javascript" src="file:///C|/Users/Tommy/AppData/Local/Temp/Temp1_form.zip/form/view.js"></script>
    </head>
    <body id="main_body" >
              <img id="top" src="file:///C|/Users/Tommy/AppData/Local/Temp/Temp1_form.zip/form/top.png" alt="">
              <div id="form_container">
                        <h1><a>Create a Profile</a></h1>
                <form id="form_836144" class="appnitro" enctype="multipart/form-data" method="post" action="">
                        <div class="form_description">
                                  <h2 align="center">Create a Tommy Lemonade Profile</h2>
                                  <p></p>
                        </div>
                          <ul >
                                              <li id="li_1" >
                        <label class="description" for="element_1">Name </label>
                        <span>
                                  <input id="element_1_1" name= "element_1_1" class="element text" maxlength="255" size="8" value=""/>
                                  <label>First</label>
                        </span>
                        <span>
                                  <input id="element_1_2" name= "element_1_2" class="element text" maxlength="255" size="14" value=""/>
                                  <label>Last</label>
                        </span>
                        </li>                    <li id="li_23" >
                        <label class="description" for="element_23">Service Provider Type </label>
                        <span>
                                  <input id="element_23_1" name="element_23_1" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_1">Barber</label>
    <input id="element_23_2" name="element_23_2" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_2">Hairstylist</label>
    <input id="element_23_3" name="element_23_3" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_3">Nail Technician</label>
    <input id="element_23_4" name="element_23_4" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_4">Massage Therapist</label>
    <input id="element_23_5" name="element_23_5" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_5">Skin Care</label>
    <input id="element_23_6" name="element_23_6" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_6">Esthetician</label>
    <input id="element_23_7" name="element_23_7" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_7">Make Up Artist</label>
                        </span><p class="guidelines" id="guide_23"><small>Select all that apply.</small></p>
                        </li>                    <li id="li_19" >
                        <label class="description" for="element_19">Top 5 services </label>
                        <div>
                                  <textarea id="element_19" name="element_19" class="element textarea medium"></textarea>
                        </div><p class="guidelines" id="guide_19"><small>Please list your top 5 services</small></p>
                        </li>                    <li id="li_20" >
                        <label class="description" for="element_20">List all services you offer & thier starting price </label>
                        <div>
                                  <textarea id="element_20" name="element_20" class="element textarea medium"></textarea>
                        </div><p class="guidelines" id="guide_20"><small>please use a new line for each service. You can do this by pressing 'enter' after each starting price.
    </small></p>
                        </li>                    <li id="li_12" >
                        <label class="description" for="element_12">Personal Phone </label>
                        <span>
                                  <input id="element_12_1" name="element_12_1" class="element text" size="3" maxlength="3" value="" type="text"> -
                                  <label for="element_12_1">(###)</label>
                        </span>
                        <span>
                                  <input id="element_12_2" name="element_12_2" class="element text" size="3" maxlength="3" value="" type="text"> -
                                  <label for="element_12_2">###</label>
                        </span>
                        <span>
                                   <input id="element_12_3" name="element_12_3" class="element text" size="4" maxlength="4" value="" type="text">
                                  <label for="element_12_3">####</label>
                        </span>
                        <p class="guidelines" id="guide_12"><small>Only fill in if you want clients to be able to contact you on your personal phone line rather than the phone at your place of employment. </small></p>
                        </li>                    <li id="li_21" >
                        <label class="description" for="element_21">E-mail (Required)  </label>
                        <div>
                                  <input id="element_21" name="element_21" class="element text medium" type="text" maxlength="255" value=""/>
                        </div><p class="guidelines" id="guide_21"><small>Staff at Tommy Lemonade will use this e-mail as your primary contact information. it will also be seen by your potential clients.</small></p>
                        </li>                    <li id="li_6" >
                        <label class="description" for="element_6">Confirm your e-mail (Required)  </label>
                        <div>
                                  <input id="element_6" name="element_6" class="element text medium" type="text" maxlength="255" value=""/>
                        </div><p class="guidelines" id="guide_6"><small>Please re-type your e-mail address</small></p>
                        </li>                    <li id="li_3" >
                        <label class="description" for="element_3">Web Site </label>
                        <div>
                                  <input id="element_3" name="element_3" class="element text medium" type="text" maxlength="255" value="http://"/>
                        </div><p class="guidelines" id="guide_3"><small>If you don't have your own website feel free to link your professional Facebook, Google+ etc... </small></p>
                        </li>                    <li id="li_4" >
                        <label class="description" for="element_4">Place of employment </label>
                        <div>
                                  <input id="element_4" name="element_4" class="element text medium" type="text" maxlength="255" value=""/>
                        </div>
                        </li>                    <li id="li_2" >
                        <label class="description" for="element_2">Work Address </label>
                        <div>
                                  <input id="element_2_1" name="element_2_1" class="element text large" value="" type="text">
                                  <label for="element_2_1">Street Address</label>
                        </div>
                        <div>
                                  <input id="element_2_2" name="element_2_2" class="element text large" value="" type="text">
                                  <label for="element_2_2">Address Line 2</label>
                        </div>
                        <div class="left">
                                  <input id="element_2_3" name="element_2_3" class="element text medium" value="" type="text">
                                  <label for="element_2_3">City</label>
                        </div>
                        <div class="right">
                                  <input id="element_2_4" name="element_2_4" class="element text medium" value="" type="text">
                                  <label for="element_2_4">State / Province / Region</label>
                        </div>
                        <div class="left">
                                  <input id="element_2_5" name="element_2_5" class="element text medium" maxlength="15" value="" type="text">
                                  <label for="element_2_5">Postal / Zip Code</label>
                        </div>
                        <div class="right">
                                  <select class="element select medium" id="element_2_6" name="element_2_6">
                                  <option value="" selected="selected"></option>
    <option value="Afghanistan" >Afghanistan</option>
    <option value="Albania" >Albania</option>
    <option value="Algeria" >Algeria</option>
    <option value="Andorra" >Andorra</option>
    <option value="Antigua and Barbuda" >Antigua and Barbuda</option>
    <option value="Argentina" >Argentina</option>
    <option value="Armenia" >Armenia</option>
    <option value="Australia" >Australia</option>
    <option value="Austria" >Austria</option>
    <option value="Azerbaijan" >Azerbaijan</option>
    <option value="Bahamas" >Bahamas</option>
    <option value="Bahrain" >Bahrain</option>
    <option value="Bangladesh" >Bangladesh</option>
    <option value="Barbados" >Barbados</option>
    <option value="Belarus" >Belarus</option>
    <option value="Belgium" >Belgium</option>
    <option value="Belize" >Belize</option>
    <option value="Benin" >Benin</option>
    <option value="Bhutan" >Bhutan</option>
    <option value="Bolivia" >Bolivia</option>
    <option value="Bosnia and Herzegovina" >Bosnia and Herzegovina</option>
    <option value="Botswana" >Botswana</option>
    <option value="Brazil" >Brazil</option>
    <option value="Brunei" >Brunei</option>
    <option value="Bulgaria" >Bulgaria</option>
    <option value="Burkina Faso" >Burkina Faso</option>
    <option value="Burundi" >Burundi</option>
    <option value="Cambodia" >Cambodia</option>
    <option value="Cameroon" >Cameroon</option>
    <option value="Canada" >Canada</option>
    <option value="Cape Verde" >Cape Verde</option>
    <option value="Central African Republic" >Central African Republic</option>
    <option value="Chad" >Chad</option>
    <option value="Chile" >Chile</option>
    <option value="China" >China</option>
    <option value="Colombia" >Colombia</option>
    <option value="Comoros" >Comoros</option>
    <option value="Congo" >Congo</option>
    <option value="Costa Rica" >Costa Rica</option>
    <option value="Côte d'Ivoire" >Côte d'Ivoire</option>
    <option value="Croatia" >Croatia</option>
    <option value="Cuba" >Cuba</option>
    <option value="Cyprus" >Cyprus</option>
    <option value="Czech Republic" >Czech Republic</option>
    <option value="Denmark" >Denmark</option>
    <option value="Djibouti" >Djibouti</option>
    <option value="Dominica" >Dominica</option>
    <option value="Dominican Republic" >Dominican Republic</option>
    <option value="East Timor" >East Timor</option>
    <option value="Ecuador" >Ecuador</option>
    <option value="Egypt" >Egypt</option>
    <option value="El Salvador" >El Salvador</option>
    <option value="Equatorial Guinea" >Equatorial Guinea</option>
    <option value="Eritrea" >Eritrea</option>
    <option value="Estonia" >Estonia</option>
    <option value="Ethiopia" >Ethiopia</option>
    <option value="Fiji" >Fiji</option>
    <option value="Finland" >Finland</option>
    <option value="France" >France</option>
    <option value="Gabon" >Gabon</option>
    <option value="Gambia" >Gambia</option>
    <option value="Georgia" >Georgia</option>
    <option value="Germany" >Germany</option>
    <option value="Ghana" >Ghana</option>
    <option value="Greece" >Greece</option>
    <option value="Grenada" >Grenada</option>
    <option value="Guatemala" >Guatemala</option>
    <option value="Guinea" >Guinea</option>
    <option value="Guinea-Bissau" >Guinea-Bissau</option>
    <option value="Guyana" >Guyana</option>
    <option value="Haiti" >Haiti</option>
    <option value="Honduras" >Honduras</option>
    <option value="Hong Kong" >Hong Kong</option>
    <option value="Hungary" >Hungary</option>
    <option value="Iceland" >Iceland</option>
    <option value="India" >India</option>
    <option value="Indonesia" >Indonesia</option>
    <option value="Iran" >Iran</option>
    <option value="Iraq" >Iraq</option>
    <option value="Ireland" >Ireland</option>
    <option value="Israel" >Israel</option>
    <option value="Italy" >Italy</option>
    <option value="Jamaica" >Jamaica</option>
    <option value="Japan" >Japan</option>
    <option value="Jordan" >Jordan</option>
    <option value="Kazakhstan" >Kazakhstan</option>
    <option value="Kenya" >Kenya</option>
    <option value="Kiribati" >Kiribati</option>
    <option value="North Korea" >North Korea</option>
    <option value="South Korea" >South Korea</option>
    <option value="Kuwait" >Kuwait</option>
    <option value="Kyrgyzstan" >Kyrgyzstan</option>
    <option value="Laos" >Laos</option>
    <option value="Latvia" >Latvia</option>
    <option value="Lebanon" >Lebanon</option>
    <option value="Lesotho" >Lesotho</option>
    <option value="Liberia" >Liberia</option>
    <option value="Libya" >Libya</option>
    <option value="Liechtenstein" >Liechtenstein</option>
    <option value="Lithuania" >Lithuania</option>
    <option value="Luxembourg" >Luxembourg</option>
    <option value="Macedonia" >Macedonia</option>
    <option value="Madagascar" >Madagascar</option>
    <option value="Malawi" >Malawi</option>
    <option value="Malaysia" >Malaysia</option>
    <option value="Maldives" >Maldives</option>
    <option value="Mali" >Mali</option>
    <option value="Malta" >Malta</option>
    <option value="Marshall Islands" >Marshall Islands</option>
    <option value="Mauritania" >Mauritania</option>
    <option value="Mauritius" >Mauritius</option>
    <option value="Mexico" >Mexico</option>
    <option value="Micronesia" >Micronesia</option>
    <option value="Moldova" >Moldova</option>
    <option value="Monaco" >Monaco</option>
    <option value="Mongolia" >Mongolia</option>
    <option value="Montenegro" >Montenegro</option>
    <option value="Morocco" >Morocco</option>
    <option value="Mozambique" >Mozambique</option>
    <option value="Myanmar" >Myanmar</option>
    <option value="Namibia" >Namibia</option>
    <option value="Nauru" >Nauru</option>
    <option value="Nepal" >Nepal</option>
    <option value="Netherlands" >Netherlands</option>
    <option value="New Zealand" >New Zealand</option>
    <option value="Nicaragua" >Nicaragua</option>
    <option value="Niger" >Niger</option>
    <option value="Nigeria" >Nigeria</option>
    <option value="Norway" >Norway</option>
    <option value="Oman" >Oman</option>
    <option value="Pakistan" >Pakistan</option>
    <option value="Palau" >Palau</option>
    <option value="Panama" >Panama</option>
    <option value="Papua New Guinea" >Papua New Guinea</option>
    <option value="Paraguay" >Paraguay</option>
    <option value="Peru" >Peru</option>
    <option value="Philippines" >Philippines</option>
    <option value="Poland" >Poland</option>
    <option value="Portugal" >Portugal</option>
    <option value="Puerto Rico" >Puerto Rico</option>
    <option value="Qatar" >Qatar</option>
    <option value="Romania" >Romania</option>
    <option value="Russia" >Russia</option>
    <option value="Rwanda" >Rwanda</option>
    <option value="Saint Kitts and Nevis" >Saint Kitts and Nevis</option>
    <option value="Saint Lucia" >Saint Lucia</option>
    <option value="Saint Vincent and the Grenadines" >Saint Vincent and the Grenadines</option>
    <option value="Samoa" >Samoa</option>
    <option value="San Marino" >San Marino</option>
    <option value="Sao Tome and Principe" >Sao Tome and Principe</option>
    <option value="Saudi Arabia" >Saudi Arabia</option>
    <option value="Senegal" >Senegal</option>
    <option value="Serbia and Montenegro" >Serbia and Montenegro</option>
    <option value="Seychelles" >Seychelles</option>
    <option value="Sierra Leone" >Sierra Leone</option>
    <option value="Singapore" >Singapore</option>
    <option value="Slovakia" >Slovakia</option>
    <option value="Slovenia" >Slovenia</option>
    <option value="Solomon Islands" >Solomon Islands</option>
    <option value="Somalia" >Somalia</option>
    <option value="South Africa" >South Africa</option>
    <option value="Spain" >Spain</option>
    <option value="Sri Lanka" >Sri Lanka</option>
    <option value="Sudan" >Sudan</option>
    <option value="Suriname" >Suriname</option>
    <option value="Swaziland" >Swaziland</option>
    <option value="Sweden" >Sweden</option>
    <option value="Switzerland" >Switzerland</option>
    <option value="Syria" >Syria</option>
    <option value="Taiwan" >Taiwan</option>
    <option value="Tajikistan" >Tajikistan</option>
    <option value="Tanzania" >Tanzania</option>
    <option value="Thailand" >Thailand</option>
    <option value="Togo" >Togo</option>
    <option value="Tonga" >Tonga</option>
    <option value="Trinidad and Tobago" >Trinidad and Tobago</option>
    <option value="Tunisia" >Tunisia</option>
    <option value="Turkey" >Turkey</option>
    <option value="Turkmenistan" >Turkmenistan</option>
    <option value="Tuvalu" >Tuvalu</option>
    <option value="Uganda" >Uganda</option>
    <option value="Ukraine" >Ukraine</option>
    <option value="United Arab Emirates" >United Arab Emirates</option>
    <option value="United Kingdom" >United Kingdom</option>
    <option value="United States" >United States</option>
    <option value="Uruguay" >Uruguay</option>
    <option value="Uzbekistan" >Uzbekistan</option>
    <option value="Vanuatu" >Vanuatu</option>
    <option value="Vatican City" >Vatican City</option>
    <option value="Venezuela" >Venezuela</option>
    <option value="Vietnam" >Vietnam</option>
    <option value="Yemen" >Yemen</option>
    <option value="Zambia" >Zambia</option>
    <option value="Zimbabwe" >Zimbabwe</option>
                                  </select>
                        <label for="element_2_6">Country</label>
              </div>
                        </li>                    <li id="li_5" >
                        <label class="description" for="element_5">Work Phone </label>
                        <span>
                                  <input id="element_5_1" name="element_5_1" class="element text" size="3" maxlength="3" value="" type="text"> -
                                  <label for="element_5_1">(###)</label>
                        </span>
                        <span>
                                  <input id="element_5_2" name="element_5_2" class="element text" size="3" maxlength="3" value="" type="text"> -
                                  <label for="element_5_2">###</label>
                        </span>
                        <span>
                                   <input id="element_5_3" name="element_5_3" class="element text" size="4" maxlength="4" value="" type="text">
                                  <label for="element_5_3">####</label>
                        </span>
                        <p class="guidelines" id="guide_5"><small>Please enter the phone number of the establishment where you work if applicable. </small></p>
                        </li>                    <li id="li_22" >
                        <label class="description" for="element_22">Schedule </label>
                        <div>
                                  <textarea id="element_22" name="element_22" class="element textarea medium"></textarea>
                        </div><p class="guidelines" id="guide_22"><small>Please feel free to include your schedule. What days you work, when are you days off, be sure to include your hours available (example: 9am-7pm) or if you have any 'by appointment only' days. </small></p>
                        </li>                    <li id="li_7" >
                        <label class="description" for="element_7">Profile Picture </label>
                        <div>
                                  <input id="element_7" name="element_7" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_8" >
                        <label class="description" for="element_8">Portfolio image  </label>
                        <div>
                                  <input id="element_8" name="element_8" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_9" >
                        <label class="description" for="element_9">Portfolio image  </label>
                        <div>
                                  <input id="element_9" name="element_9" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_10" >
                        <label class="description" for="element_10">Portfolio image  </label>
                        <div>
                                  <input id="element_10" name="element_10" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_11" >
                        <label class="description" for="element_11">Portfolio image  </label>
                        <div>
                                  <input id="element_11" name="element_11" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_13" >
                        <label class="description" for="element_13">Portfolio image  </label>
                        <div>
                                  <input id="element_13" name="element_13" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_14" >
                        <label class="description" for="element_14">Portfolio image  </label>
                        <div>
                                  <input id="element_14" name="element_14" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_15" >
                        <label class="description" for="element_15">Portfolio image  </label>
                        <div>
                                  <input id="element_15" name="element_15" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_16" >
                        <label class="description" for="element_16">Portfolio image  </label>
                        <div>
                                  <input id="element_16" name="element_16" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_17" >
                        <label class="description" for="element_17">Portfolio image  </label>
                        <div>
                                  <input id="element_17" name="element_17" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_18" >
                        <label class="description" for="element_18">Portfolio image  </label>
                        <div>
                                  <input id="element_18" name="element_18" class="element file" type="file"/>
                        </div> 
                        </li>
                            <li class="buttons">
                              <input type="hidden" name="form_id" value="836144" />
                        <input id="saveForm" class="button_text" type="submit" name="submit" value="Submit" />
                            </li>
                          </ul>
                        </form>
                        <div id="footer">
                        </div>
              </div>
              <img id="bottom" src="file:///C|/Users/Tommy/AppData/Local/Temp/Temp1_form.zip/form/bottom.png" alt="">
              </body>
    </html>

    I'm afraid not.    It's not rocket science but you need to do some coding. 
    You'll need to find a script (php) and save it to your local site folder.  Then reference the script in your form's action attribute like so.
         <form action="path/form-to-email-script.php" >
    The input fields in your HTML form need to exactly match the script variables. 
    I'm  assuming you're hosted on a Linux server which uses PHP code.  Linux servers are also case sensitive, so upper case names are not the same as lower case names.  It's usually best to use all lower case names in your form and script to avoid confusion.
    Related Links:
    Formm@ailer PHP from DB Masters
    http://dbmasters.net/index.php?id=4
    Tectite
    http://www.tectite.com/formmailpage.php
    If this is all a bit beyond your skill set, look at:
    Wufoo.com (on-line form service)
    http://wufoo.com/
    Nancy O.

  • How to make form register in adobe edge?

    hy, how to make coding form register in adobe edge? please help me

    hy, master uboss..
    could i ask again?
    i was tried it as your suggestion but after i fill it data still cant send to database..
    could you give some suggestion longer?
    file connection.php
    <?php
    $host = "localhost";
    $user = "root";
    $password = "";
    $database = "register";
    mysql_connect($host,$user,$password) or die ("database tidak terhubung, cek koneksi");
    mysql_select_db($database);
    ?>
    file proses.php
    <?php
    include "koneksi.php";
    $password=$_POST['password'];
    $username=$_POST['username'];
    $email=$_POST['email'];
    $fullname=$_POST['fullname'];
    $query=mysql_query("insert into daftar(password, username, email, fullname)
    value('$password','$username','$email','$fullname')");
    if($query){
    echo "Data Berhasil ditambah";
    ?><a href="/bukutamu.php">  Lihat Data Masuk</a><?php
    }else{
    echo "Gagal input data";
    echo mysql_error();
    ?>
    file login.php
    <!DOCTYPE html>
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
      <title>Senza nome</title>
    <!--Adobe Edge Runtime-->
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <script type="text/javascript" charset="utf-8" src="login_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-1488021 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <form action="proses.php" method="POST">
    <body style="margin:0;padding:0;">
      <div id="Stage" class="EDGE-1488021">
      </div>
    </form>
    </body>
    </html>
    after submit
         database---->>> stil blank...

  • How to Make a Printable Results Page in Adobe Captivate 8

    Hi Captivate Developers!
    We made a really cool Captivate tip that I think you will enjoy. This tip allows your learners print-friendly results in Adobe Captivate 8. We also include the code needed to make it work and is actually pretty easy. It also includes videos for each step. Hope you like it!
    http://elearningbrothers.com/how-to-make-a-printable-results-page-in-adobe-captivate-8/

    If you have a dynamic web site (database driven), use PHP or ASP data queries.
    If your site is static (no databases), look at the links below:
    Zoom Search Engine software
    http://www.wrensoft.com/zoom/index.html
    Free Find
    http://www.freefind.com/
    Pico Search
    http://www.picosearch.com/
    Google Site Search -
    http://www.google.com/sitesearch/
    Web Assist DW Tools for Google (free)
    http://www.webassist.com/free-downloads/dreamweaver-extensions/dreamweaver-tools-for-googl e/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How can make the header repeat in every page?

    I followed the instructions in pages' help nad it does work for text heardes, however it does not work with images and graphics.
    Daoes anyone know how to make graphic and/or images headers repeat in each page?
    Thanks in advance.
    Ruben

    Make them Master Objects:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=182&highlight=letter head&mforum=iworktipsntrick
    Peter

  • How to make a navigation bar with buttons that stay highlighted

    I have Dreamweaver MX 2004. I know how to make a simple nav
    bar, but how do you make it so it's like the Apple website, with
    buttons that stay highlighted on the appropriate page?

    "[email protected]" <[email protected]>
    wrote in message
    news:gd04sb$5mc$[email protected]..
    >I have Dreamweaver MX 2004. I know how to make a simple
    nav bar, but how
    >do you make it so it's like the Apple website, with
    buttons that stay
    >highlighted on the appropriate page?
    http://divahtml.com/products/divaGPS/current_menu_location.php
    Thierry
    http://www.TJKDesign.com/go/?0
    | Articles and Tutorials
    http://divahtml.com/products/scripts_dreamweaver_extensions.php
    | Extensions
    that keep your markup clean
    http://www.fourlevel.com/ |
    CSS Menus, Gallery, Tab Panels, etc

  • How to make table of contents linkable

    Could someone tell me how to make the table of contents for my indesing book linkable? I've seen this in PDF documents before and assume it can be done using InDesign, but haven't been able to figure out how to do it.

    gscortino1 wrote:
    I need to have a Book Table of contents work as well as chapter Table of contents and also Ineractive elements all work when clicked in a PDF.  How do I manage this?  I can get the Table of Contents to work and no interactive elements or visa versa. I f I export to pdf Ptint I get both TOC to work but no buttons If I export to interactive I get only the Chapter TOC to work and the buttons but not the Book TOC.  I know its a bug what is Adobe doing about it and when are we going to get a free fix? 
    What version of ID are you using? What export settings? As noted above, there is a bug, and what you want may not be posible at the moment.

  • Hi can anyone tell me how to make the forms url short to the end user

    Hi,
    Im using oracle forms 11gR2 and everything is working fine, but my question in how to make the forms url short to the end user.
    For example my forms url is  " http://localhost:9001/forms/frmservlet "  now i want to modify this url as   "myweb.gov.ae"
    can anybody suggest me the possibilities to change to default forms url to our own url as mentioned in the above example.
    Thanks & Regards,
    Hari

    You would have to either -
    * edit the code pointed to by the new action attribute to
    include the form
    processing and email generation, or
    * edit the form processing script to also include the insert
    record and
    check user name scripting
    The former is probably the better procedure, since I suppose
    you'd want to
    do the check user name before sending the email.
    Unfortunately, this means
    you will have to get your hands into the code, or hire
    someone to do it for
    you.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "ducati1" <[email protected]> wrote in
    message
    news:gkriis$et6$[email protected]..
    > Hi guys.
    > I have a page with a form on it here.
    >
    http://www.thechallenge.net.au/superredemption.php
    > I want the data placed in the textfields within the form
    to come to me in
    > an
    > email upon submission.
    > Now normally I would action the form to use this page
    here
    >
    http://www.thechallenge.net.au/Redemptionform.txt
    > But because the action of the form is now <?php echo
    $editFormAction; ?>
    > due
    > to an insert record and check user name server behavior
    I cannot use my
    > normal
    > method.
    > Can anyone tell me how I can get around this problem?
    >

Maybe you are looking for

  • Re-connecting events with iMovie project

    Hi, basically i was making a movie using "imovie vesion 9" on the guest account of a friends computer. Having uncompleted the project i saved it onto an external hardrive to continue at a later date (im aware that this would involve re-importing even

  • Perspectives not visible in NWDS 7.1 ehp1

    hi I have downloaded and installed the CE 7.1 EHP1 from SDN. when i finished the installation of NWDS i am able to see only 3 perspectives in the NWDS. I have followed the pdf file with name "installation and configuration of SAP CE 7.1 EHp1 preview

  • Download link for Cs4

    Hi! I purchased the creative Suite 4 Design Standard back in 2010. I am interested in installing this on my recently purchased laptop. However‚ I lost the installation disc. Are there any download links available for Cs4 products?

  • THE i pod shuffle is it really worth it

    Brought a i pod shuffle and i thought it was the dogs ******s but it really isnt. For the 6 months 4 of which it was corrupted and wasnt any good to me. Went to try and sort it on here but staff werent interested or anyone else. So it went in the was

  • Free Space on Macintosh HD not showing up

    After reinstalling a clean setup of Tiger, free space on Macintosh HD is not showing up on desktop, however the total size is. I have repaired the premissions and validated everything through disk utility, thus I did not resolve this issue. Thanks in