Download the text of the query to a trigger

I have the trigger on update. And I want to connect this update to another table. I want to log a query text that activated a trigger in my log table. Is there a way to get the text of the query in Oracle?

As I told you to look at this post Re: capture the sql statement that activates the trigger
There is a bug with this summary in 10G which is corrected it. ora_sql_txt always returns NULL because of this bug.
In the post above, I've posted a link to ora FAQ, where you can find more information on this bug and very probably some metalink url also.

Tags: Database

Similar Questions

  • I need to stop a download of the query, I thought a stand-alone application but turns require a higher level (FCPX) as a 'parent' and I do not who have, or want to buy.

    I need to stop a download of the query, that I thought a stand-alone application but turns require a higher level (FCPX) as a 'parent' and I do not have that, or I want to buy it.

    Motion IS a stand-alone application. It is mainly designed to make effects for Final Cut Pro X, but it is not necessary to have with FCPX nor is it necessary to have FCPX to create projects for other purposes. When you open the query, simply select project of work outside the FCPX motion. You can save regular projects of Motion anywhere on your system.

  • Download the text file of the site domain

    I need to download a text file to a directory of a domain site.  Text file is saved  What to do next?

    On your PC, right-click on the text file, and then click on copy.

    Connect to the domain (if you don't know how, you will need to get instructions from the domain administrator on how to configure your PC to connect to the domain - specific settings that are required there and they differ by area - and you may need to be configured on the domain and given rights).  Once the installation program I would map a drive to the field to make easier access next time.  Navigate the site of field to the directory where you want the file to exist.  Right-click on the directory and click on paste.

    The file will now have been copied in the domain site directory (assuming you have the appropriate permissions on the domain server to add files in this directory - you will need to talk to the domain so that administrator it it gives you an "access denied" or "you do not have sufficient to perform this task" or a similar error message).

    That's all there is to it.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Why does text appear distorted since I downloaded the latest version of the player.  I run a Microsoft operating system on a desktop computer.

    Why does text appear distorted since I downloaded the latest version of the player.  I run a Microsoft operating system on a desktop computer.

    Hi markm10760403,

    Open the drive, go to the edition menu > preferences > Page Display > rendering > set smooth text for laptop / monitor.

    Click OK to confirm the changes.

    Restart the drive and check if the problem persists.

    Kind regards

    Meenakshi

  • Cannot preview filetype please download the file for display and garbled text on an uploaded image

    Dear Madam or Sir,

    When I click on a file titled 'Subject access request letter re account 12527629 Sort Code 60-10-34 24022015.pdf number', which is stored in my account on Acrobat.com, I get the response "cannot get a filetype overview please download the file for display. This file was created from a document in OpenOffice .odt the same title. Please notify.

    I downloaded an image, which is supposed to be a .pdf file, since the installation of web of Royal Mail Track & Trace using my Samsung S5. The text that I expect to see might as well be hieroglyphics for all its resemblance to the text. Please notify.

    Kind regards

    Ron Platt

    PS I tried to join the two files (.pdf) but informs me that "image type is not allowed. Please notify.

    Hi Ron,

    In your efforts, you mention in step #6 you save the file as a PDF secure. Applied security files cannot be previewed to the customer, that's why you get the message "cannot preview filetype please download the file for display. This message preview complete and preview the hover. After downloading the file, you should be able to access it without error (within the limits of the guarantee applied).

    The hover behavior you report is expected. If you hover over a file name, you will see "hover" noticed after a few seconds, that will get you a small preview of the file (rather than having to open it in the overview). If poster only if you hover over a name of file, not in the empty area of each line, so that you have not seen continually arise.

    Hope this helps,

    Laura

  • Need help to highlight the query text in the document

    Hi, I'm trying to load files into the blob column and try to create the text index.

    I need to query the blob column in the original glass by a string, which should return the relevant documents with the query string, highlighted with some color.

    Can you please help me with an example of the above.

    Thanks in advance.
    SCOTT@orcl_11gR2> -- table:
    SCOTT@orcl_11gR2> CREATE TABLE document_tab
      2    (document_col  BLOB)
      3  /
    
    Table created.
    
    SCOTT@orcl_11gR2> -- procedure to load documents:
    SCOTT@orcl_11gR2> CREATE OR REPLACE PROCEDURE load_document
      2    (p_dir  IN VARCHAR2,
      3       p_file IN VARCHAR2)
      4  AS
      5    v_blob       BLOB;
      6    v_bfile       BFILE;
      7  BEGIN
      8    INSERT INTO document_tab (document_col)
      9    VALUES (EMPTY_BLOB())
     10    RETURNING document_col INTO v_blob;
     11    v_bfile := BFILENAME (UPPER (p_dir), p_file);
     12    DBMS_LOB.FILEOPEN (v_bfile, DBMS_LOB.LOB_READONLY);
     13    DBMS_LOB.LOADFROMFILE (v_blob, v_bfile, DBMS_LOB.GETLENGTH (v_bfile));
     14    DBMS_LOB.FILECLOSE (v_bfile);
     15  END load_document;
     16  /
    
    Procedure created.
    
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> -- load documents (directory and files must be on server, not client):
    SCOTT@orcl_11gR2> CREATE OR REPLACE DIRECTORY my_dir AS 'c:\my_oracle_files'
      2  /
    
    Directory created.
    
    SCOTT@orcl_11gR2> BEGIN
      2    load_document ('my_dir', 'banana.pdf');
      3    load_document ('my_dir', 'english.doc');
      4    load_document ('my_dir', 'sample.txt');
      5  END;
      6  /
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11gR2> -- confirm files were loaded:
    SCOTT@orcl_11gR2> SELECT DBMS_LOB.GETLENGTH (document_col)
      2  FROM   document_tab
      3  /
    
    DBMS_LOB.GETLENGTH(DOCUMENT_COL)
    --------------------------------
                              222824
                               22016
                                  60
    
    3 rows selected.
    
    SCOTT@orcl_11gR2> -- text index:
    SCOTT@orcl_11gR2> CREATE INDEX document_idx
      2  ON document_tab (document_col)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    
    Index created.
    
    SCOTT@orcl_11gR2> -- confirm files were indexed:
    SCOTT@orcl_11gR2> SELECT COUNT(*) FROM dr$document_idx$i
      2  /
    
      COUNT(*)
    ----------
           319
    
    1 row selected.
    
    SCOTT@orcl_11gR2> -- function to return highlighted document:
    SCOTT@orcl_11gR2> CREATE OR REPLACE FUNCTION your_markup
      2    (p_index_name IN VARCHAR2,
      3       p_textkey    IN VARCHAR2,
      4       p_text_query IN VARCHAR2,
      5       p_plaintext  IN BOOLEAN  DEFAULT TRUE,
      6       p_tagset     IN VARCHAR2 DEFAULT 'HTML_DEFAULT',
      7       p_starttag   IN VARCHAR2 DEFAULT '*',
      8       p_endtag     IN VARCHAR2 DEFAULT '*',
      9       p_key_type   IN VARCHAR2 DEFAULT 'ROWID')
     10    RETURN          CLOB
     11  AS
     12    v_clob          CLOB;
     13  BEGIN
     14    CTX_DOC.SET_KEY_TYPE (p_key_type);
     15    CTX_DOC.MARKUP
     16        (index_name => p_index_name,
     17         textkey    => p_textkey,
     18         text_query => p_text_query,
     19         restab     => v_clob,
     20         plaintext  => p_plaintext,
     21         tagset     => p_tagset,
     22         starttag   => p_starttag,
     23         endtag     => p_endtag);
     24    RETURN v_clob;
     25  END your_markup;
     26  /
    
    Function created.
    
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> -- query that returns highlighted document:
    SCOTT@orcl_11gR2> VARIABLE string VARCHAR2(100)
    SCOTT@orcl_11gR2> EXEC :string := 'test AND demonstration'
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11gR2> SELECT your_markup ('document_idx', ROWID, :string)
      2           AS highlighted_text
      3  FROM   document_tab
      4  WHERE  CONTAINS (document_col, :string) > 0
      5  /
    

    HIGHLIGHTED_TEXT
    --------------------------------------------------------------------------------
    It is a document test of demonstration to highlight.

    1 selected line.

    Scott@orcl_11gR2 >

  • Fill a text element to EXECUTE the QUERY

    Fill a text element when a list item is changed by using the following code in a trigger WHEN-LIST-CHANGED:

    SELECT ROOM_DESC IN: SESSIONS. ROOM_DESC OF ROOMS WHERE ROOM_REF =: SESSIONS. ROOM_REF;

    It works fine but when I start a new form and click on run query that do not appear in the text element data.

    What type of trigger can I use these data through when I press to run the query and if I can use the same code?

    Bravo guys

    Hello

    This because when you pull, the trigger WHEN LIST-CHANGED does not occur. So, write the same line in the trigger after REQUEST of the block.

    Kind regards

    Manu.

    If my answer or the answer to another person has been useful or appropriate, please mark accordingly

  • SQL text of the query are output in the output of the coil-ed

    Hello

    I have s script that starts with sql * more:
    SET SERVEROUTPUT ON
    SET LINESIZE 1000
    SET ECHO OFF
    SET TERMOUT OFF
    SET FEEDBACK OFF
    
    SPOOL /home/scott/out.txt
    
    SELECT col_1||';'||col_2 FROM table1;  --and my select statement here!
    
    SPOOL OFF
    My out.txt must contain all records from table1, where the fields are separated by a semicolon.
    Unfortunately, out.txt also contains the text of the query itself:
    SELECT col_1||';'||col_2 FROM table1
    ------------------------------------
    1;one
    2;two
    
    AND SO ON!
    How can I Remove the text of the query output?

    Thank you!

    Looks like you want to delete the pages headers. VR;

    set pagesize 0
    
  • Lost my copy and I tried to download the iso from the Microsoft web site, but my product key will not validate, pass this message: we had a problem with the validation query

    Original title: error Windows 7 installation files

    I bought a copy of Windows 7 at Tiger Direct on 22/05/2014.  I lost my copy and I tried to download the iso from the Microsoft web site, but my product key is not valid.  I get this error message

    We had a problem with the request for approval.

    FAQ

    See for other directions:

    http://answers.Microsoft.com/en-us/Windows/wiki/Windows_7-update/how-to-what-are-my-options-for-obtaining-Windows-7/528163c1-0b2e-4AD2-a26d-7112851d1dc2

  • Download the XML query ADF Table line

    I have a request to adf with the data obtained in the adf table that has a column 'ID' with a link. How to get the value of link ID selected in the bean class and download the XML from DB?

    Java (TM) Platform1.7.0_51
    Oracle IDE12.1.3.0.41.140521.1008

    Here's the Code to work. Thanks for all the help.

    
      
      
      
    
    

    And the Bean.download)

    inputstream = blobdomain.getInputStream();
    // copy blob to output
    byte[] buffer = new byte[4096];
    int nread;
    while ((nread = inputstream.read(buffer)) != -1) {
      outputStream.write(buffer, 0, nread);
    }
    outputStream.close();
    outputStream.flush();
    inputstream.close();
    blobdomain.closeInputStream();
    
  • I downloaded the adobe reader software, and when I call a pdf file, the following text is displayed.

    I downloaded the adobe reader software on my computer and now when I call a pdf file a meassage seems I have to accept the terms.  How to get back to the agreement?

    Mac?
    Go to: Mac HD/Applications

    Double-click the reader app and accept the agreement.

    Windows?
    Go to: C/Program Files(x86) / Adobe / 11.0 / player

    Double-click the file eula.exe and accept the contract

  • When someone comes in! * they should be able to download the file, how can I do?

    Original title: Hello

    Hello

    people you know out

    Here I want to insert a file

    When someone enters

    ***!***

    they should be able to download the file

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;

    namespace NewProject
    {
    Class Program
    {
    public static void Main (string [] args)
    {
    Console.WriteLine;
    Console.WriteLine ("How are you");
    String a1 = Convert.ToString (Console.ReadLine ();
    if (a1 == "***!***")
    {
    Console.WriteLine ("you are great");
    Console.ReadLine ();
    }
    Console.WriteLine ("what you do");
    String a2 = Convert.ToString (Console.ReadLine ();
    If (a2 == "!") *!!!")
    {
    Console.WriteLine ("you are great");
    Console.ReadLine ();
    }
    Console.WriteLine ("end");
    Console.ReadLine ();
    }
    }
    }

    Hi stevoo,

    The question you posted would be better suited in the MSDN Forums. I would recommend posting your query in the MSDN Forums.

    To contact the MSDN support, you can use the following link.
    http://social.msdn.Microsoft.com/forums/en/categories

    Hope this is useful.

  • Enter in the input area, output of the query / report of the AN_id, to query/display page.

    Hello
    I tried to create a text input area to enter a type of alphanumeric data, however it does not work for me again.
    Can someone help me here is the new code 2, I added to my query results.
    Basically, I have 2 pages
    One is the entry (index)
    And the other is where is the logic. / query

    I was working on a fifth Query but now since I added the code. It doesn't yet?
    Can someone help me?
    Thank you.
    And thank you

    In the box, I have this in the index.cfm

    < label > enter AN ID
    < input type = "text" name = "AN_ID" / >
    < / label >

    In where clause is what I have the requests page or

    AN_ID = ' #form. "AN_ID #

    Here is the code:

    index page

    Sort by:
    < select name = "Orderby" size = "1" >
    < option value = "AN_ID" > YEAR ID < / option >
    < option value = "AN_DATE" > a DATE < / option >
    < / select >
    < br / >
    < br / >
    Output format:
    < input type = "radio" name = "outputFormat" value = "HTML" checked = "checked" / >
    HTML
    < input type = "radio" name = "outputFormat" value = "PDF" / >
    PDF
    < input type = "radio" name = "outputFormat" value = "CSV" / >
    Download/open Excel Spreadsheet < BR / >
    < BR / >
    < /p >
    < / make >
    < p > < / p >
    < / div >

    < form id = "form1" name = "form1" method = "post" action = "" >
    < label > enter AN ID
    < input type = "text" name = "AN_ID" / >
    < / label >
    ----------------------------------------------------------------------------------------- ------------------------------------------------------------

    the query page and view the page


    < cfquery name = "getHIPPOcases" datasource = "oracle10" >
    Select
    Thecasertab.AN_ID as AN ID
    Thecasertab.AN_DATE as a date
    Thecasertab_requi.case_requi_id
    Thecasertab_requi.requi_type_cd
    Thecasertab_requi. App_user_id


    Of
    thold_case
    tloc
    tla_prop
    Thecasertab
    tref_plan_area
    Thecasertab_requi

    where
    Thecasertab_requi.caser_id = Thecasertab.caser_id
    and
    thold_case.caser_id = Thecasertab.caser_id
    and
    AN_ID = ' #form. "AN_ID #



    order by

    < cfswitch expression = "#Form.orderBy #" >
    < cfcase value = "AN_ID" >
    CASE. AN_ID
    < / cfcase >
    < cfcase value = "AN_DATE" >
    CASE. AN_date
    < / cfcase >
    < / cfswitch >


    < / cfquery >


    <! - report html - >
    < cfswitch expression = "#Form.outputFormat #" >
    < cfcase value = "HTML, PDF" >

    < cfsavecontent variable = "htmlData" >
    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" " 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 = iso-8859-1 "/ >"
    getHIPPOcases < title > < /title >
    < / head >
    < style type = "text/css" >

    TD {}
    do-family: Arial, Helvetica, without serif.
    do-size: 12px;
    }
    Th {}
    do-family: Arial, Helvetica, without serif.
    do-size: 12px;
    make-weight: bold;
    background-color: #FFFF99;
    }
    H2 {}
    do-family: Arial, Helvetica, without serif.
    do-size: 14px;
    }
    H3 {}
    do-family: Arial, Helvetica, without serif.
    font-size: 15px;
    }
    < / style >

    < body >
    < cfoutput >
    < table border = "0" cellpadding = "3" cellspacing = "0" >
    < b >

    < td align = "center" >
    getHIPPOcases < h3 > < / h3 > < br > < br > < table >
    < /tr >
    < b >
    < td align = "center" >
    < / h2 > your query returned #getHIPPOcases.RecordCount # entries < / h2 > < table >
    < /tr >
    < b >
    < td >
    < table border = "2" cellpadding = "2" cellspacing = "0" >
    < b >
    Number < /th > < th > Record
    < width th = "120" > YEAR ID < /th >
    date of YEAR < /TH > < TH >

    < /tr >

    < cfloop query = "getHIPPOcases" >


    < tr bgcolor = "< cfif currentrow mod 2 > F8F8FF < cfelse > WHITE < / cfif >" >
    < td > #CurrentRow # < table >
    < td > #AN_ID # < table >
    < td > #dateformat(AN_date,"mm/dd/yyyy") # < table >


    < /tr >
    < / cfloop >

    < /table >
    < table >
    < /tr >
    < /table >

    < / BODY >
    < / HTML >
    < / cfoutput >
    < / cfsavecontent >

    < cfswitch expression = "#Form.outputFormat #" >

    < cfcase value = "HTML" >
    < cfoutput >
    #htmldata #.
    < / cfoutput >
    < / cfcase >
    < cfcase value = "PDF" >
    PDF
    < cfdocument format = "pdf" >
    < cfoutput >
    #htmldata #.
    < / cfoutput >
    < / cfdocument >
    < / cfcase >

    < / cfswitch >





    < / cfcase >

    < cfcase value = "CSV" >


    < NAME CFHEADER = "Content-Disposition" VALUE = "attachment; filename = Citywide.csv">
    < cfcontent type = "application/msexcel" > "YEAR ID ', 'a date '.
    < cfoutput query = "getHIPPOcases" > #ltrim (AN_ID) #, "#dateformat(AN_date,"mm/dd/yyyy")" # ""
    < / cfoutput >


    < / cfcase >
    < / cfswitch >



    Quote:
    Posted by: briankind
    on the entry
    I get home an_id value let lov-1234-oop-ui
    and
    PRESST the button
    It's notreturn results (nothing happens)
    Thank you

    In this case, hard-code the value "lov-1234-oop-ui" in your query instead of the form variable. You get a result?

  • Download the image to the directory and database of the same form data

    Hi all

    I play to build a shopping cart (never done before) a tutorial of Gordon Knapp at www.webthang.com.

    I created the site and it works perfectly. Now, I want to extend it.

    There is a form that allows the user to add data to the database. I would also like to be able to transfer an image to a directory on the server and add the data to the database at the same time of the same shape. It would be good if the input field "< input name ="product_picture"type ="text"id ="product_picture"tabindex ="6"size ="50"/ >" could be filled automatically by the file name of the image being downloaded, but it's not a neccessity.

    I looked at different packages ASP Upload and I can upload a single image, but none of them clearly show how to download the image and add data to the database at the same time.

    It is a private project I need suggestions for free.

    The tutorial shows how to create Dev Ultra site but works perfectly well in DW. The page looks like this. It is named "admin_add.asp":

    "< %@LANGUAGE="VBSCRIPT "CODEPAGE ="65001"% >
    "" <!-#include = file '... / Connections/con_ecom.asp "-->
    < %
    Dim MM_editAction
    MM_editAction = CStr (Request.ServerVariables ("SCRIPT_NAME"))
    If (Request.QueryString <>"") then
    MM_editAction = MM_editAction & "?" & Server.HTMLEncode (Request.QueryString)
    End If

    'boolean to abandon a record edition.
    Dim MM_abortEdit
    MM_abortEdit = false
    % >
    < %
    "Implementation of the IIR.
    Function MM_IIf (condition, ifTrue or ifFalse)
    If condition = "" then
    IfFalse = MM_IIf
    On the other
    IfTrue = MM_IIf
    End If
    End Function
    % >
    < %
    If (CStr (Request ("MM_insert")) = "add_form") then
    If (not MM_abortEdit) then
    'execute the insert.
    Dim MM_editCmd

    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_con_ecom_STRING
    MM_editCmd.CommandText = "INSERT INTO products (product_category product_name, product_price, product_briefdesc, product_fulldesc, product_picture) VALUES (?,?,?,?,?,?)".
    MM_editCmd.prepared = true
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param1", 202, 1, 50, Request.Form ("product_category")) ' adVarWChar
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param2", 202, 1, 50, Request.Form ("product_name")) ' adVarWChar
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param3", 5, 1, -1, MM_IIF (Request.Form ("product_price"), Request.Form ("product_price"), null)) ' adDouble
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param4", 203, 1, 536870910, Request.Form ("product_briefdesc")) ' adLongVarWChar
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param5", 203, 1, 536870910, Request.Form ("product_fulldesc")) ' adLongVarWChar
    MM_editCmd.parameters.Append MM_editCmd.CreateParameter ("param6", 202, 1, 50, Request.Form ("product_picture")) ' adVarWChar
    MM_editCmd.execute
    MM_editCmd.ActiveConnection.close

    ' add the query string to the redirect URL
    Dim MM_editRedirectUrl
    MM_editRedirectUrl = "admin_control.asp".
    If (Request.QueryString <>"") then
    If (InStr (1, MM_editRedirectUrl, "?", vbTextCompare in) = 0) then
    MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
    On the other
    MM_editRedirectUrl = MM_editRedirectUrl & "" & Request.QueryString
    End If
    End If
    Response.Redirect (MM_editRedirectUrl)
    End If
    End If
    % >
    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN".
    " 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 > Administration - add a < /title > product
    "" < link href = "... / scripts/admin.css" rel = "stylesheet" type = "text/css" / >
    "< script type =" text/javascript"src ="... / scripts/ecom.js "> < / script >"
    < / head >

    < body onLoad = "adminTitle ()" >
    < div id = 'wrapper' >

    < div id = "pageHeading" > ADMINISTRATION - add a PRODUCT < / div >

    < div id = "navBar" > < a href = "admin_control.asp" > < /a > control | " Add | < a href = "admin_view.asp" > view < /a > | < a href = "admin_update1.asp" > update < /a > | < a href = "admin_delete1.asp" > delete < /a > | "" < a href = "... / Default.asp" > shop < /a > < / div >

    < br / >

    < name of the form = "add_form" id = "add_form" method = "POST" action = "< % = MM_editAction % >" >
    < table border = "1" align = "center" id = "tblArea" >
    < b >
    < class td = "tdLabel" > < table > product category
    < td colspan = "2" > < input name = "product_category" type = "text" id = "product_category" tabindex = "1" size = "50" / > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > Product Name < table >
    < td colspan = "2" > < input name = 'product_name' type = 'text' id = 'product_name' tabindex = "2" size = "50" / > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > < table > product price
    < class td = "tdContent" colspan = "2" > < input type = "text" name = "product_price" id = "product_price" tabindex = "3" size = "50" / > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > product short Description < table >
    < class td = "tdContent" colspan = "2" > < textarea name = "product_briefdesc" id = "product_briefdesc" cols = "47" lines = "4" tabindex = "4" > < / textarea > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > full < table > Product Description
    < class td = "tdContent" colspan = "2" > < textarea name = "product_fulldesc" id = "product_fulldesc" cols = "47" rows = "5" tabindex = "5" > < / textarea > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > < table > product Image file name
    < class td = "tdContent" colspan = "2" > < input name = "product_picture" type = "text" id = "product_picture" tabindex = "6" size = "50" / > < table >
    < /tr >
    < b >
    < class td = "tdLabel" > < table >
    < td align = "center" > < input type = "reset" name = "Reset" id = "Reset" value = "Reset form" / > < table >
    < td align = "center" > < input type = "submit" name = "Submit" id = "Submit" value = "Add to the shop" / > < table >
    < /tr >
    < /table >
    < input type = "hidden" name = "MM_insert" value = "add_form" / >
    < / make >

    < / div >
    < / body >
    < / html >

    Hope you can help.

    Best regards

    Martin

    Have sorted it.

    Found an excellent tutorial to Webthang.

    http://www.webthang.co.UK/Tuts/tuts_dmx/rob15/rob15.asp

  • When I click on "download video" on a TED talk, the video plays right outside, but I would like to download the video to play offline how can I do this?

    If I try 'right click' (i.e. holding the button for a few seconds) the button 'Download video', the only result is that the text of the button is selected. So, I don't know how to download the video for offline reading in my Android phone 4.2.2.

    "right click" (that is, for a long time by tapping the button) 'Download video' has not helped, but I have now managed to download the video just by 'clicking' (that is, threads) this button. I think that it is perhaps due to a recent update of Firefox for Android. Thank you for your time!

Maybe you are looking for

  • Vibrate and haptic does not not on my new iPhone 6 s

    This has happened twice already, my iPhone 6 s that I just noticed that the vibrator or the haptic function no longer works on my iPhone 6 s. And I tried to put the phone on silent and using the 3D Touch feature, but not luck. The 3D Touch allows me

  • Equium A100-147: very low volume (sound)

    Hi all Just bought a new A100-147 and found that the volume through the built-in speakers is extremely low, even when the scroll bar on the sound setting has been set up. I can barely hear anything, even my PDA has an output sound better than that. T

  • Hard drive on my Sam. A30 making strange noises

    Hello. My laptop is Satellite A30 614 with 60 GB. When I do my apps it gives some noise the hard drive and when I copy of documents or install software giving the lost message data. A big problem is until I press F1 my system doesn't boot.Please help

  • cRIO 9076 time sync

    If this is true NTP synchronization is a big correction of the date-time on the boot. After starting, it adjusts the processor clock to account for drift.  The algorithm has tolerance of error, but if you exceed this tolerance (i.e. If you're too far

  • How to measure the time elapsed between two steps?

    Hello In my script, I ask the subsequences. How can I measure the time it takes each subsequence? Something like: Statement: StationGlobals.TimeElapsed = 0 -> SOMETHING HERE TO START A COUNTER call sous-suite Popup: Str (TimeElapsed) Thanks for help