Oracle apache dont sends forms

Hello i got a question i have a installed Oracle9i with integrated APACHE Webserver and PHP 4. The Webserver does interpret my php code very well but i cant send my forms. I have tried it also just with HTML with the same result if i click on the send button nothing happens. Is this a know problem?

hello again well i have tested the phpinfo my modules are loaded well. Else my code wouldnt work in any way i guess. But iam still haveing the problem about the Variable in the Sql Statement. Becouse whatever i try as the Variable like you said i just no data found and 0 Records selected. If i write a usual SQL Statement like "select * from Employees it works fine so i guess it just sends the Variable from my form. i have the globals off in my php.ini. I see the sendet Variable as tab=Employees for example but it seems like the script is dont getting it.
Again my 2 codeparts maybe there is again a stupid failor:
myora.php:
['quote']
<?php
$conn = Ocilogon("hr", "hr" ,"OEMREP");
'quote'$query = 'select TABLE_NAME from USER_TABLES';'/quote'
$stid = OCIParse($conn, $query);
OCIExecute($stid);
?>
<form action="phpout.php">
<select name="tab" size="5">
<?php
while (OCIFetchInto($stid, $row, OCI_ASSOC))
echo '<option>';
     echo $row['TABLE_NAME']."<br>\n";
     echo '</option>';
?>
</select></p>
<input type="submit" value="Senden"></form>
['/quote']
phpout.php
['quote']
<?php
$conn = ocilogon("hr", "hr" ,"OEMREP");
//fetch
$stmt = OCIParse($conn,"select * from $_GET['tab']");
OCIExecute($stmt);
$nrows = OCIFetchStatement($stmt,$results);
if ( $nrows > 0 ) {
print "<TABLE BORDER=\"1\">\n";
print "<TR>\n";
while ( list( $key, $val ) = each( $results ) ) {
print "<TH>$key</TH>\n";
print "</TR>\n";
for ( $i = 0; $i < $nrows; $i++ ) {
reset($results);
print "<TR>\n";
while ( $column = each($results) ) {
$data = $column['value'];
print "<TD>$data[$i]</TD>\n";
print "</TR>\n";
print "</TABLE>\n";
} else {
echo "No data found<BR>\n";
print "$nrows Records Selected<BR>\n";
?>
['quote']
PS: how shall i souround my code it doesnt work with ;; or <pre></pre> like in the faq

Similar Messages

  • Forms 6i server with oracle Apache on 9i

    Hi
    has anyone configured forms 6i server with oracle Apache on oracle 9i
    any suggestions
    kedar

    Hi Paul
    I have configure as per notes on metalink 114226.1 in httpd.conf file
    I have stopped IIS and restarted HTTP server
    i get the default page when i enter http://<server>/dev60html/runform.htm
    but when i enter port of forms server and web host as the machine name it takes along time
    can u let me know if i am missing on any thing specific ?? in the setup
    thanks
    kedarr

  • Dont Send Error at the time of Login

    hi all,
    i am getting Windows Dont Send/send Error at the Login in SQL * PLUS / Forms / Reports, Then If u press dont send SQL*Plus getting closed.....
    can any one pls tell me, how to resolve this...
    Regards,
    Kalyan

    Hi all,
    I am using windows XP service Pack 2. i installed Oracle 9i and connecting successfully. But after that i installed D2K, But i am not able to connect with database.
    Oracle Net8 Easy Config is giving me this error,
    The test did not succeed.
    ORA-03106: fatal two-task communication protocol error
    There may be an error in the fields entered
    or the server may not be ready for a connection.
    You can check the server and retry, or continue.
    But My SQL Plus 8.0 is showing windows Send/Dont send error. when i press dont send it is getting closed.
    Please any one can help?

  • Oracle PL/SQL send/receive message in weblogic jms queue

    I am looking for a very simple way using oracle plsql to send and receive messages in a weblogic jms queues.
    Thanks

    Even i am looking for the same . Would be great if someone would help ..The jms setup has to be done in weblogic like the jms server, jms module, Jms connection factory , jms queue and then the jndi names . Now thw Problem here lies to me is that i really dont knw what should be the connection factory targets ,jndi names and where do i give the schema details as in the user name ,password , db name . Also if there is any explaination with eg on how to send /receive messages from a db trigger to jms queues .

  • Installing Oracle Server 8i with Form 6.0

    Hello Hi,
    I want to Install Form 6.0 With Oracle 8i on Server
    mean not personal oracle,
    if i install first oracle 8i and then form 6.0 then
    they overwrite their homes and vice versa.
    What method i use to control this problem.
    please help me so that i install form 6.0 on oracle 8i server.
    thanks
    hayat ([email protected])

    Install Oracle8i Personal and Dev2k on same machine in following steps
    1. Install Oracle Personal
    2. Install Dev2k (Include SQL Net) and restart the computer
    3. Find file tnsnames.ora
    4. Locate string "TCP-Loopback" in tnsnames.ora
    5. Change it with some other name and remember it.
    6. In the regarding entry (few lines below) specify oracle SID
    7. If you dont know you ORACLE-SID find it in init.ora file
    8. Go to command prompt and write 'lsnrctl'
    9. A propmpt will come write 'start'
    Note:
    1. If you are Installing Dev-2k on a client machine and Oracle server is running on any other machine then Do steps-1,8,9 on server and rest on DEV-2k Machine.
    2. If bad-command occurs on 'lsnrctl' then try to find out the similar exe file in ORACLE_HOME\bin directory and write that name
    If you still get some error mail me at [email protected]

  • Send Form to Email with Spry & PHP

    Hi there,
    i dont understand this page
    Submit
    forms with XHR
    What is in this page: SubmitChecker.php?
    How do I send the Form Information to an Email?
    Is there a tutorial from start to finish. All this tutorials
    or sample stop at the most important part. How to send.
    Thanks for help
    Denis

    Thanks for your little advice. I got it. And the send code
    should be placed in the php file called by the form ;-)
    TestPage
    Thanks a lot !!!
    Denis
    Which download? Can you please post a link to the download
    I know how to send forms with PHP. But now i want to try it
    without load a new page. The problem is, that i dont understand how
    to merge all the things. Spry, Form and PHP.
    I guess i have to put the sendscript inside here:
    // Callback function that will update the response_form1 div
    with the response that comes from the server
    function updateResponseDiv(req)
    Spry.Utils.setInnerHTML('response_form1',
    req.xhRequest.responseText);
    Or is this only the place for the message that the form has
    been submitted?
    Do i have to send the form inside the SubmitChecker.php
    It's a pity that all the samples stop at the important part.
    And that they are all in english.
    It will be greatful if you have a simple sample with
    Submitting a Form with Spry and PHP. Just to see how it works and
    where to place the code.
    cheers
    denis

  • Oracle Developer 6i Build Forms II

    Hi all,
    Does any one have this ILT Oracle Developer 6i Build Forms II ot is there any place where I can download it from?
    If you have this pdf please send it to [email protected]
    Thanks

    Hey Mark,
    Thanks! But this contains only the dumps. I need the Student Guide, which they call it as ILT.
    I need it for Build Forms II Volume 1 and Volume 2. (Version 6i).
    Thanks in advance,

  • Checklist for apache server and form server

    Hi,
    When some thing wrong happen to Apache server
    please tell me the checklist for apache simillarly for form server
    Thanks

    I would recommend the following notes:
    Note: 244274.1 - Oracle Application Object Library Generic Service Management (GSM) Setup Test
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=244274.1
    Note: 200360.1 - Oracle Application Object Library Concurrent Manager Setup Test
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=200360.1
    Note: 398624.1 - Oracle Application Object Library Concurrent Manager Test Set
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=398624.1
    Note: 370317.1 - Oracle Application Object Library Concurrent Processing Data Collection Test
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=370317.1
    Note: 134007.1 - CMCLEAN.SQL - Non Destructive Script to Clean Concurrent Manager Tables
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=134007.1
    One more Note which helps to make sure that all necessary components of Oracle applications are up and running before releasing the instance to end-users:
    Note: 283976.1 - Applications 11i Health Check After Maintenance
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=283976.1

  • Windows prompting send error report or dont send

    when am using labview application windows prompting send error report or dont send can some one help in this..I did all re installation and windows update but no use..

    You will need to provide more details as we cannot see your computer screen. Does this happen every time you launch LabVIEW? What version of LabVIEW are you using? What version of Windows? Does LabVIEW crash? If so, what were you doing at the time it crashed?

  • TS1717 I had to restore my itunes library however everytime I try to go to my podcasts I am kicked off of Itunes with a send/dont send error report I can acess podcasts only while syncing ipod

    I have been having trouble getting into my podcasts after restoring my itunes library to an earlier library, every time I select podcast i am kicked off itunes with an error send/dont send pop up however I can acess the podcasts when sinking my ipod only

    Hello there, danbucfan.
    It seems that you were referred to us from the very article that provides steps for troubleshooting your issue. Although they may seem extensive, these steps will help pinpoint where the issue lies:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    If you continue to get the error, please feel free to provide the exact error message, to see if that sheds further light on what your issue may be.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Not able to view Forms Server version in Help: About Oracle Applications after the forms upgrade 10.1.2.3.0

    Hi all,
    DB:11.2.0.3.0
    EBS:12.1.3
    O/S: Sun Solaris SPARC 64 bits
    I am not able to view Forms Server version in Help: About Oracle Applications after the forms upgrade 10.1.2.3.0 after the forms upgrade 10.1.2.3.0 as per note:Upgrading OracleAS 10g Forms and Reports to 10.1.2.3 (437878.1)
    Java/jre upgraded to 1.7.0.45 and JAR files regenerated(without force option). Able to opne forms without any issues.
    A)
    $ORACLE_HOME/bin/frmcmp help=y
    FRM-91500: Unable to start/complete the build.
    B)
    $ORACLE_HOME/bin/rwrun ?|grep Release
    Report Builder: Release 10.1.2.3.0 - Production on Thu Nov
    28 14:20:45 2013
    Is this an issue? Could anyone please share the fix if faced the similar issue earlier.
    Thank You for your time
    Regards,

    Hi Hussein,
    You mean reboot the solaris server and then start database and applications services. We have two databases running on this solaris server.
    DBWR Trace file shows:
    Read of datafile '+ASMDG002/test1/datafile/system.823.828585081' (fno 1) header failed with ORA-01206
    Rereading datafile 1 header failed with ORA-01206
    V10 STYLE FILE HEADER:
            Compatibility Vsn = 186646528=0xb200000
            Db ID=0=0x0, Db Name='TEST1'
            Activation ID=0=0x0
            Control Seq=31739=0x7bfb, File size=230400=0x38400
            File Number=1, Blksiz=8192, File Type=3 DATA
    Tablespace #0 - SYSTEM  rel_fn:1
    Creation   at   scn: 0x0000.00000004 04/27/2000 23:14:44
    Backup taken at scn: 0x0001.db8e5a1a 04/17/2010 04:16:14 thread:1
    reset logs count:0x316351ab scn: 0x0938.0b32c3b1
    prev reset logs count:0x31279a4c scn: 0x0938.08469022
    recovered at 11/28/2013 19:43:22
    status:0x2004 root dba:0x00c38235 chkpt cnt: 364108 ctl cnt:364107
    begin-hot-backup file size: 230400
    Checkpointed at scn:  0x0938.0cb9fe5a 11/28/2013 15:04:52
    thread:1 rba:(0x132.49a43.10)
    enabled  threads:  01000000 00000000 00000000 00000000 00000000 00000000
    Hot Backup end marker scn: 0x0000.00000000
    aux_file is NOT DEFINED
    Plugged readony: NO
    Plugin scnscn: 0x0000.00000000
    Plugin resetlogs scn/timescn: 0x0000.00000000 01/01/1988
    00:00:00
    Foreign creation scn/timescn: 0x0000.00000000 01/01/1988
    00:00:00
    Foreign checkpoint scn/timescn: 0x0000.00000000 01/01/1988
    00:00:00
    Online move state: 0
    DDE rules only execution for: ORA 1110
    ----- START Event Driven Actions Dump ----
    ---- END Event Driven Actions Dump ----
    ----- START DDE Actions Dump -----
    Executing SYNC actions
    ----- START DDE Action: 'DB_STRUCTURE_INTEGRITY_CHECK' (Async) -----
    Successfully dispatched
    ----- END DDE Action: 'DB_STRUCTURE_INTEGRITY_CHECK'
    (SUCCESS, 0 csec) -----
    Executing ASYNC actions
    ----- END DDE Actions Dump (total 0 csec) -----
    ORA-01186: file 1 failed verification tests
    ORA-01122: database file 1 failed verification check
    ORA-01110: data file 1:
    '+ASMDG002/test1/datafile/system.823.828585081'
    ORA-01206: file is not part of this database - wrong
    database id
    Thanks,

  • I have recently updated my computer and it has imessage on it but sometimes they dont send them to my phone how can i make all the messages be on both?

    i have recently updated my computer and it has imessage on it but sometimes they dont send them to my phone how can i make all the messages be on both?

    See Here  >  About Messages
    Using Messages  >  http://support.apple.com/kb/HT3529
    Troubleshooting Messages  >  http://support.apple.com/kb/TS2755
    Mac 101: Messages
    http://support.apple.com/kb/HT5395

  • Oracle Application Server 10g Forms and Reports Services

    Hi there,
    I want to install Oracle Application Server 10g Forms and Reports Services. What must I download? The installation guide says that "Oracle Application Server 10g (9.0.4) Forms and Reports Services allows you to install and configure Forms and Reports Services without the need to install and configure all of Oracle Application Server 10g (9.0.4)" but it does not clearly state what exactly to download.
    Oracle Application Server 10g Release 2 (10.1.2.0.2)
    [http://www.oracle.com/technology/software/products/ias/htdocs/101202.html]
    or
    Oracle Developer Suite 10g (10.1.2.0.2)
    [http://www.oracle.com/technology/software/products/ids/htdocs/101202winsoft.html]
    Faoilean.

    You might find better assistance in the APplication Server forum - Oracle Application Server - General

  • Form login problem in Oracle 10g AS, even form does display

    Dear All
    We are facing one problem, when we access form with oracle 10g AS, the form is displayed, but when we enter username and password, it doesnt go to the other screen, it remains hang there and doesnt do any thing, neither give any error.
    we would appreciate the help.
    thanks in advance

    Sounds like you cannot connect to the database....
    Is there a firewall between the app-server and the database? If yes, could you check with your firewall people that all traffice from db-server is allowed to app-server (from app-server to db-server just 1521, or another port that you used for the listener, is enough)
    If not all traffic is allowed, then check the USE_SHARED_SOCKET environment variable (this is the windows name, there is a setting like this for unix too, but I can't recall the exact name by heart. It might be different)

  • Oracle Database 11g Administrator or Oracle PL/SQL and Forms Developer?

    Hi,
    I am thinking about doing an Oracle certification course- Oracle Database 11g Administrator or Oracle PL/SQL and Forms Developer.
    Oracle Database 11g OCP and OCM certification requires 3 mandatory training courses to be completed that costs between $1900 and $3250/each. Oracle PL/SQL certication doesn't require any mandatory training course.
    Which one of these would be a good choice? Please advise.
    Thank you,
    Tracy

    Regardless of which path you want to take, in order to get the OCP certification in either the DBA or PL/SQL developer track, you must first obtain the respective OCA certification for that track. I'm assuming that since you are still undecided in which path to take that you haven't started working on either yet. If you look at the pages for the OCA DBA and OCA PL/SQL Developer certs and what is required for each, you'll see that the first block of tests for either certification (the SQL based exams) has the same options (1Z0-007, 1Z0-047, 1Z0-051) and passing one of those SQL based exams gives credit towards obtaining both OCA certifications. That might be a good place to start.
    Doing one of these tests first might give you some extra time to decide which track you want to pursue. But as Justin said, it really depends on what you do (or plan on doing) in your career as to which path might be more beneficial for you.
    As for the OCM level stuff, I wouldn't even think about it until you get the OCP. One step at a time... Same with OCP before OCA. That being said, my suggestions are just that, suggestions. You're free to take any exams/courses in any order, but you won't be able to obtain the certs until you have completed the requirements for each.

Maybe you are looking for

  • Plants at sales order

    Hello, I have a sales organization/distribution channel with two plants. I created several materials for both plants. When I make a sales order, always appear plant A in the item line, and when is necessary, I have to change it manually. Is it possib

  • Itunes and folder monitoring

    Will iTunes ever use folder monitoring? To be honest, it's the one thing iTunes is missing. Don't give me the "itunes doesn't want to mess with you files" stuff. I just want iTuens to monitor a folder so when i add songs to it, it is added into ituen

  • Communigate -- Snow Leopard Mail

    is there a relatively easy way to migrate from Communigate Pro to Mail in Snow Leopard? if so please let me know... thx.

  • Synonym across a database link

    Hi Oracle Gurus, Heres my requirement, - a] I have two databases ('x' & 'y'). b] On x, I have two schemas ('a' & 'b'), while on 'y', I have only 1 schema ('c'). c] I have created a synonym in 'b' for all the objects in 'c' using a database link. d] N

  • OAF Page not opening

    Hi All, I hv created a custom OA page and attached the page function to WF_GUEST_GRANTS menu, so that it can be opened up thro an email notification without logging in. It works fine but after accessing it for about 5-6 times, the page doesnt showup