1 form, 2 actions to do: check the captcha and put data into the database

Hello

I am trying to create a registration page that puts the data entered by the user in a database. That part works: there is a connection to the database and the information is placed in the database correctly. To avoid spam, I would add captcha on the form. I've been looking at the possibilities of reCaptcha, and the result is the following: the image appears correctly and the image is renewed when you click on the link. But the problem is that this captcha can be controlled without adding "verify.php" action to the form. How can I, in Dreamweaver, add a second action to the form? In other words, what code should I replace the part "$editFormAction"? Or I think entirely in a bad way? This is the first time I use Dreamweaver, I also never worked with php before.

Here is the code I have now (I'm sorry guys but I'm Dutch ):

<?php require_once('Connections/Klantenlijst.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}
}
// *** Redirect if username exists
$MM_flag="MM_insert";
if (isset($_POST[$MM_flag])) {
  $MM_dupKeyRedirect="www.sint-jorishoeve.be";
  $loginUsername = $_POST['gebruikersnaam'];
  $LoginRS__query = sprintf("SELECT Gebruikersnaam FROM klantenlijst WHERE Gebruikersnaam=%s", GetSQLValueString($loginUsername, "text"));
  mysql_select_db($database_Klantenlijst, $Klantenlijst);
  $LoginRS=mysql_query($LoginRS__query, $Klantenlijst) or die(mysql_error());
  $loginFoundUser = mysql_num_rows($LoginRS);
  //if there is a row in the database, the username was found - can not add the requested username
  if($loginFoundUser){
    $MM_qsChar = "?";
    //append the username to the redirect page
    if (substr_count($MM_dupKeyRedirect,"?") >=1) $MM_qsChar = "&";
    $MM_dupKeyRedirect = $MM_dupKeyRedirect . $MM_qsChar ."requsername=".$loginUsername;
    header ("Location: $MM_dupKeyRedirect");
    exit;
  }
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "registreren")) {
  $insertSQL = sprintf("INSERT INTO klantenlijst (`Voornaam ruiter`, `Familienaam ruiter`, `Geboortedatum dag`, `Geboortedatum maand`, `Geboortedatum jaar`, `E-mailadres 1`, `Telefoon 1`, Gebruikersnaam, Paswoord) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['voornaam_ruiter'], "text"),
                       GetSQLValueString($_POST['voornaam_ruiter'], "text"),
                       GetSQLValueString($_POST['geboortedatum_ddag'], "int"),
                       GetSQLValueString($_POST['geboortedatum_maand'], "text"),
                       GetSQLValueString($_POST['geboortedatum_jaar'], "int"),
                       GetSQLValueString($_POST['e-mailadres_1'], "text"),
                       GetSQLValueString($_POST['telefoon'], "int"),
                       GetSQLValueString($_POST['gebruikersnaam'], "text"),
                       GetSQLValueString($_POST['paswoord'], "text"));
  mysql_select_db($database_Klantenlijst, $Klantenlijst);
  $Result1 = mysql_query($insertSQL, $Klantenlijst) or die(mysql_error());
  $insertGoTo = "aanmelden.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $insertGoTo));
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "registratie")) {
  $insertSQL = sprintf("INSERT INTO klantenlijst (`Voornaam ruiter`, `Familienaam ruiter`, `Geboortedatum dag`, `Geboortedatum maand`, `Geboortedatum jaar`, `Opmerkingen / Medisch`, `Voornaam contactpersoon 1`, `Familienaam contactpersoon 1`, `Contactpersoon 1 is`, `Voornaam contactpersoon 2`, `Familienaam contactpersoon 2`, `Contactpersoon 2 is`, `E-mailadres 1`, `E-mailadres 2`, `Telefoon 1`, `Telefoon 2`, `Telefoon 3`, Opmerkingen, Gebruikersnaam, Paswoord) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['voornaam_ruiter'], "text"),
                       GetSQLValueString($_POST['familienaam_ruiter'], "text"),
                       GetSQLValueString($_POST['geboortedatum_dag'], "int"),
                       GetSQLValueString($_POST['geboortedatum_maand'], "text"),
                       GetSQLValueString($_POST['geboortedatum_jaar'], "date"),
                       GetSQLValueString($_POST['opmerkingen_ruiter'], "text"),
                       GetSQLValueString($_POST['voornaam_contactpersoon_1'], "text"),
                       GetSQLValueString($_POST['familienaam_contactpersoon_1'], "text"),
                       GetSQLValueString($_POST['contactpersoon_1_is'], "text"),
                       GetSQLValueString($_POST['voornaam_contactpersoon_2'], "text"),
                       GetSQLValueString($_POST['familienaam_contactpersoon_2'], "text"),
                       GetSQLValueString($_POST['contactpersoon_2_is'], "text"),
                       GetSQLValueString($_POST['emailadres_1'], "text"),
                       GetSQLValueString($_POST['emailadres_2'], "text"),
                       GetSQLValueString($_POST['telefoon_1'], "int"),
                       GetSQLValueString($_POST['telefoon_2'], "int"),
                       GetSQLValueString($_POST['telefoon_3'], "int"),
                       GetSQLValueString($_POST['opmerkingen_contactpersoon'], "text"),
                       GetSQLValueString($_POST['gebruikersnaam'], "text"),
                       GetSQLValueString($_POST['paswoord'], "text"));
  mysql_select_db($database_Klantenlijst, $Klantenlijst);
  $Result1 = mysql_query($insertSQL, $Klantenlijst) or die(mysql_error());
  $insertGoTo = "http://www.sint-jorishoeve.be";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $insertGoTo));
}
mysql_select_db($database_Klantenlijst, $Klantenlijst);
$query_Contactenlijst = "SELECT * FROM klantenlijst";
$Contactenlijst = mysql_query($query_Contactenlijst, $Klantenlijst) or die(mysql_error());
$row_Contactenlijst = mysql_fetch_assoc($Contactenlijst);
$totalRows_Contactenlijst = mysql_num_rows($Contactenlijst);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Manege Sint-Jorishoeve</title>
<style type="text/css">
<!--
body,td,th {
 font-family: Verdana, Geneva, sans-serif;
 font-size: 10px;
 color: #300;
 font-weight: bold;
}
body {
 background-color: #FF9;
 font-family: Verdana, Geneva, sans-serif;
 font-size: 12px;
 font-style: normal;
 line-height: normal;
 font-weight: normal;
 font-variant: normal;
 text-transform: none;
 color: #300;
}
a {
 font-family: Verdana, Geneva, sans-serif;
 font-size: 12px;
 color: #F90;
}
a:visited {
 color: #F90;
}
a:hover {
 color: #F90;
}
a:active {
 color: #F90;
}
h1,h2,h3,h4,h5,h6 {
 font-family: Verdana, Geneva, sans-serif;
}
h1 {
 font-size: 14px;
 color: #300;
}
-->
</style>
<script src="SpryAssets/SpryValidationPassword.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationConfirm.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationCheckbox.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationTextarea.js" type="text/javascript"></script>
<script src="SpryAssets/SpryEffects.js" type="text/javascript"></script>
<script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
<link href="SpryAssets/SpryValidationPassword.css" rel="stylesheet" type="text/css">
<link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css">
<link href="SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css">
<link href="SpryAssets/SpryValidationConfirm.css" rel="stylesheet" type="text/css">
<link href="SpryAssets/SpryValidationCheckbox.css" rel="stylesheet" type="text/css">
<link href="SpryAssets/SpryValidationTextarea.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
<!--
function MM_effectHighlight(targetElement, duration, startColor, endColor, restoreColor, toggle)
{
 Spry.Effect.DoHighlight(targetElement, {duration: duration, from: startColor, to: endColor, restoreColor: restoreColor, toggle: toggle});
}
function MM_showHideLayers() { //v9.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
//-->
</script>
<link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Registreren</h1>
<p><em>Let op: Dit is een registratie voor een volledig nieuwe account met nieuwe gebruikersnaam en paswoord.</em><em></em></p>
<p><em>Indien u een persoon aan uw account wilt toevoegen (met dezelfde gebruikersnaam), doe dit via 'Mijn gegevens'.</em> </p>
<p> </p>
<script type="text/javascript">
var RecaptchaOptions = {
 lang : 'nl',       
 theme : 'custom',
 custom_theme_widget: 'recaptcha_widget'
 };
    </script>
<form action="<?php echo $editFormAction; ?>" method="POST" enctype="application/x-www-form-urlencoded" name="registratie" id="registratie" onSubmit="MM_showHideLayers('registratie','','hide')">
  <p><strong>GEGEVENS VAN DE TE REGISTREREN PERSOON</strong></p>
  <p>Voornaam*:
    <span id="sprytextfield9">
    <label>
      <input name="voornaam_ruiter" type="text" id="voornaam_ruiter" size="25" maxlength="50">
    </label>
  <span class="textfieldRequiredMsg">Dit veld is verplicht in te vullen!</span><span class="textfieldMaxCharsMsg">Hier kan u max. 50 karakters invullen!</span><span class="textfieldMinCharsMsg">Dit veld is verplicht in te vullen!</span></span> </p>
  <p>Familienaam*: <span id="sprytextfield10">
    <label>
      <input name="familienaam_ruiter" type="text" id="familienaam_ruiter" size="25" maxlength="50">
    </label>
    <span class="textfieldMaxCharsMsg">Hier kan u max. 50 karakters invullen!</span></span> </p>
  <p>Geboortedatum*: 
    <span id="sprytextfield11">
    <label>
      <input name="geboortedatum_dag" type="text" id="geboortedatum_dag" value="00" size="4" maxlength="2">
    </label>
    <span class="textfieldInvalidFormatMsg">Gebruik het aangegeven formaat aub.!</span><span class="textfieldMinCharsMsg">Gebruik het aangegeven formaat!</span><span class="textfieldMaxCharsMsg">Dit is geen geldige dag van de maand!</span><span class="textfieldMinValueMsg">Dit is geen geldige dag van de maand!</span><span class="textfieldMaxValueMsg">Dit is geen geldige dag van de maand!</span></span><span id="spryselect2">
    <label>
      <select name="geboortedatum_maand" id="geboortedatum_maand">
        <option selected> </option>
        <option value="Januari">Januari</option>
        <option value="Februari">Februari</option>
        <option value="Maart">Maart</option>
        <option value="April">April</option>
        <option value="Mei">Mei</option>
        <option value="Juni">Juni</option>
        <option value="Juli">Juli</option>
        <option value="Augustus">Augustus</option>
        <option value="September">September</option>
        <option value="Oktober">Oktober</option>
        <option value="November">November</option>
        <option value="December">December</option>
      </select>
    </label>
<span class="selectRequiredMsg">Dit veld is verplicht in te vullen!</span></span><span id="sprytextfield12">
<label>
  <input name="geboortedatum_jaar" type="text" id="geboortedatum_jaar" value="0000" size="8" maxlength="4">
</label>
<span class="textfieldRequiredMsg">Dit veld is verplicht in te vullen!</span><span class="textfieldInvalidFormatMsg">Dit is geen geldig geboortejaar!</span><span class="textfieldMinCharsMsg">Gebruik het aangegeven formaat aub.!</span><span class="textfieldMaxCharsMsg">Dit is geen geldig geboortejaar!</span><span class="textfieldMinValueMsg">Dit is geen geldig geboortejaar!</span><span class="textfieldMaxValueMsg">Dit is geen geldig geboortejaar!</span></span></p>
  <p><span id="sprytextfield13">
    <label>Opmerkingen / Medisch te weten:<span class="textfieldMaxCharsMsg">Hier mag u max. 100 karakters invullen!</span></label>
</span>
    <input name="opmerkingen_ruiter" type="text" id="opmerkingen_ruiter" size="50" maxlength="100">
  </p>
  <p> </p>
  <p><strong>GEGEVENS VAN DE CONTACTPERSOON</strong></p>
  <p>Is de contactpersoon de te registreren persoon zelf *?
    <span id="spryselect4">
    <label>
      <select name="ja_nee" id="ja_nee">
        <option selected> </option>
        <option value="Ja">Ja</option>
        <option value="Nee">Nee</option>
      </select>
    </label>
  <span class="selectRequiredMsg">Dit veld is verplicht in te vullen!</span></span> </p>
  <p><em>Indien nee, specifiëer wie de contactpersoon is / contactpersonen zijn:</em></p>
  <p><strong>Contactpersoon 1: </strong></p>
  <p><em>Voornaam:     <span id="sprytextfield16">
    <input name="voornaam_contactpersoon_1" type="text" id="voornaam_contactpersoon_1" size="25" maxlength="50">
    <span class="textfieldMinCharsMsg">Dit is geen geldige voornaam!</span><span class="textfieldMaxCharsMsg">Hier mag u max. 50 karakters invullen!</span></span><span>
    <label><span class="textfieldMinCharsMsg">Minimum number of characters not met.</span><span class="textfieldMaxCharsMsg">Exceeded maximum number of characters.</span></label>
    </span> </em></p>
  <p><em>Familienaam: <span id="sprytextfield15">
    <label>
      <input type="text" name="familienaam_contactpersoon_1" id="familienaam_contactpersoon_1">
    </label>
  <span class="textfieldMinCharsMsg">Dit is geen geldige familienaam!</span><span class="textfieldMaxCharsMsg">Hier mag u max. 50 karakters invullen!</span></span> </em></p>
  <p><em>Contactpersoon 1 is:
      <span id="spryselect3">
      <label>
        <select name="contactpersoon_1_is" id="contactpersoon_1_is">
          <option selected> </option>
          <option value="Ouder">Ouder</option>
          <option value="Andere familie">Andere familie</option>
          <option value="Geen familie">Geen familie</option>
        </select>
      </label>
</span> </em></p>
  <p><strong>Contactpersoon 2:</strong></p>
  <p><em>Voornaam: <span id="sprytextfield7">
    <label>
      <input name="voornaam_contactpersoon_2" type="text" id="voornaam_contactpersoon_2" size="25" maxlength="50">
      <span class="textfieldMinCharsMsg">Dit is geen geldige voornaam!</span><span class="textfieldMaxCharsMsg">Hier mag u max. 50 karakters invullen!</span></label>
</span> </em></p>
  <p><em>Familienaam: <span id="sprytextfield8">
    <label>
      <input name="familienaam_contactpersoon_2" type="text" id="familienaam_contactpersoon_2" size="25" maxlength="50">
      <span class="textfieldMinCharsMsg">Dit is geen geldige familienaam!</span><span class="textfieldMaxCharsMsg">Hier mag u max. 50 karakters invullen!</span></label>
</span> </em></p>
  <p><em>Contactpersoon 2 is:
<span id="spryselect1">
    <label></label>
    </span><span id="spryselect5">
    <select name="contactpersoon_2_is" id="contactpersoon_2_is">
      <option selected> </option>
      <option value="Ouder">Ouder</option>
      <option value="Andere familie">Andere familie</option>
      <option value="Geen familie">Geen familie</option>
    </select>
</span><span>  <span class="selectRequiredMsg">Please select an item.</span></span> </em></p>
  <p> </p>
  <p>E-mailadres 1 *:
    <span id="sprytextfield6">
    <label>
      <input name="emailadres_1" type="text" id="emailadres_1" size="25" maxlength="50">
      <strong><em>      Kijk dit aub. na op typfouten!
    </em></strong></label>
    <em><strong><span class="textfieldInvalidFormatMsg">Dit is geen geldig e-mailadres!</span><span class="textfieldRequiredMsg">Dit veld is verplicht in te vullen!</span><span class="textfieldMinCharsMsg">Dit is geen geldig e-mailadres!</span><span class="textfieldMaxCharsMsg">Hier mag u max. 50 karakters invullen!</span></strong></em></span></p>
  <p>E-mailadres 2: 
    <span id="sprytextfield5">
    <label>
      <input type="text" name="emailadres_2" id="emailadres_2">
    </label>
  <span class="textfieldInvalidFormatMsg">Dit is geen geldig e-mailadres!</span><span class="textfieldMinCharsMsg">Dit is geen geldig e-mailadres!</span><span class="textfieldMaxCharsMsg">Hier mag u max. 50 karakters invullen!</span></span> </p>
  <p>Telefoon / GSM 1 *: 
    <span id="sprytextfield4">
    <label>
      <input name="telefoon_1" type="text" id="telefoon_1" size="20" maxlength="10">
    <em><strong>Kijk dit aub.   na op typfouten!</strong></em> </label>
    <span class="textfieldRequiredMsg">Dit veld is verplicht in te vullen!</span><span class="textfieldInvalidFormatMsg">Typ het telefoonnummer zonder streepjes of spaties in!</span><span class="textfieldMinValueMsg">Dit is geen geldig telefoonnummer!</span><span class="textfieldMaxValueMsg">Dit is geen geldig telefoonnummer!</span><span class="textfieldMinCharsMsg">Dit is geen geldig telefoonnummer!</span><span class="textfieldMaxCharsMsg">Typ het telefoonnummer zonder streepjes of spaties!</span></span></p>
  <p>Telefoon / GSM 2: 
    <span id="sprytextfield17">
    <label>
      <input name="telefoon_2" type="text" id="telefoon_2" size="20" maxlength="10">
    </label>
  <span class="textfieldInvalidFormatMsg">Typ het telefoonnummer zonder streepjes of spaties!</span><span class="textfieldMinValueMsg">Dit is geen geldig telefoonnummer!</span><span class="textfieldMaxValueMsg">Dit is geen geldig telefoonnummer!</span><span class="textfieldMaxCharsMsg">Typ het telefoonnummer zonder streepjes of spaties!</span><span class="textfieldMinCharsMsg">Dit is geen geldig telefoonnummer!</span></span> </p>
  <p>Telefoon / GSM 3: 
    <span id="sprytextfield3">
    <label>
      <input name="telefoon_3" type="text" id="telefoon_3" size="20" maxlength="10">
    </label>
  <span class="textfieldInvalidFormatMsg">Typ het telefoonnummer zonder streepjes of spaties!</span><span class="textfieldMinValueMsg">Dit is geen geldig telefoonnummer!</span><span class="textfieldMaxValueMsg">Dit is geen geldig telefoonnummer!</span><span class="textfieldMinCharsMsg">Dit is geen geldig telefoonnummer!</span><span class="textfieldMaxCharsMsg">Typ het telefoonnummer zonder streepjes of spaties!</span></span> </p>
  <p>Opmerkingen ivm. contactpersoon: 
    <span id="sprytextfield2">
    <label>
      <input name="opmerkingen_contactpersoon" type="text" id="opmerkingen_contactpersoon" size="50" maxlength="100">
    </label>
    </span> </p>
  <p> </p>
  <p><strong>ACCOUNTGEGEVENS</strong></p>
  <p>Kies een gebruikersnaam *: 
    <span id="sprytextfield1">
    <label>
      <input name="gebruikersnaam" type="text" id="gebruikersnaam" size="25" maxlength="50">
    <em><strong>Kijk aub.  na op typfouten!</strong></em> </label>
    </span></p>
  <p><em>De gebruikersnaam moet tussen 6 en 50 karakters lang zijn en mag zowel letters als cijfers omvatten. </em></p>
  <p><em>Tip: gebruik uw e-mailadres als gebruikersnaam. Let op: de gebruikersnaam is hoofdlettergevoelig!</em></p>
  <p>Kies een paswoord *: 
    <span id="sprypassword2">
    <label>
      <input name="paswoord" type="password" id="paswoord" size="20" maxlength="15">
    </label>
  <span class="passwordRequiredMsg">Dit veld is verplicht in te vullen!</span><span class="passwordMinCharsMsg">Het paswoord moet min. 6 karakters lang zijn!</span><span class="passwordMaxCharsMsg">Het paswoord mag max. 15 karakters lang zijn!</span><span class="passwordInvalidStrengthMsg">Het paswoord voldoet niet aan de voorwaarden!</span></span> </p>
  <p>Typ het paswoord opnieuw ter verificatie *: <span id="spryconfirm1">
    <label>
      <input type="password" name="paswoord_verificatie" id="paswoord_verificatie">
    </label>
  <span class="confirmRequiredMsg">Dit veld is verplicht in te vullen!</span><span class="confirmInvalidMsg">De paswoorden komen niet overeen!</span></span></p>
  <p><em>Het paswoord moet tussen 6 en 15 karakters lang zijn, moet zowel letters als cijfers bevatten en mag geen</em></p>
  <p><em>speciale tekens bevatten. </em><em>Let op: het paswoord is hoofdlettergevoelig!</em></p>
  <p><em>Tip: schrijf het paswoord ergens op alvorens </em><em>het formulier te verzenden zodat u het niet vergeet. </em></p>
  <p> </p>
  <p>
    <span id="sprycheckbox1">
    <label>
      <input name="akkoord_privacy" type="checkbox" id="akkoord_privacy" value="akkoord">
    </label>
  <span class="checkboxRequiredMsg">Verplicht aan te vinken!.</span></span> Ik bevestig dat zowel de te registreren persoon als de contactpersoon het <a href="http://www.sint-jorishoeve.be/privacy.htm" target="_blank">Privacy Statement</a> gelezen </p>
  <p>hebben en hiermee akkoord gaan. </p>
  <p>
    <?php 
  require_once('recaptchalib.php'); 
  $publickey = "6Lce_ckSAAAAAAGhklRAs1KsXJ7-YxZAaoTldLyQ"; // you got this from the signup page 
  echo recaptcha_get_html($publickey);
  ?>
  <div id="recaptcha_widget" style="display:none">
   <div id="recaptcha_image"></div>
    <div class="recaptcha_only_if_incorrect_sol" style="color:red">Woorden komen niet overeen. Probeer opnieuw.</div>
    <span class="recaptcha_only_if_image">Typ de woorden in de afbeelding over *:</span>
    <span class="recaptcha_only_if_audio">Typ cijfers die u hoort:</span>
    <input type="text" id="recaptcha_response_field" name="recaptcha_response_field" /><div>
    <a href="javascript:Recaptcha.reload()">Ik kan de woorden niet lezen, vernieuw de afbeelding.</a></div>
  </div>
  <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6Lce_ckSAAAAAAGhklRAs1KsXJ7-YxZAaoTldLyQ">
  </script>
  <noscript>
  <iframe src="http://www.google.com/recaptcha/api/noscript?k=6Lce_ckSAAAAAAGhklRAs1KsXJ7-YxZAaoTldLyQ" height="300" width="500" frameborder="0">
  </iframe>
  <span id="sprytextarea2">
  <textarea name="recaptcha_challenge_field" cols="40" rows="3" id="recaptcha_challenge_field"></textarea>
  <em><strong>Kijk  aub. na op typfouten!</strong></em> <span class="textareaRequiredMsg">Dit veld is verplicht in te vullen!</span><span class="textareaMinCharsMsg">Dit veld is verplicht in te vullen!</span></span>
  <input type="hidden" name="recaptcha_response_field" value="manual_challenge">
  </noscript>
   </p>
  <p><em>Tip: Gebruik de link 'Vernieuwen' indien u de woorden niet kunt lezen.</em></p>
  <p> </p>
  <p>
    <label>
      <input name="registreren" type="submit" id="registreren" onFocus="Highlight" onBlur="Highlight" onClick="MM_effectHighlight('registreren', 1000, '#F0F0F0', '#FFCC33', '#FFCC00', true)" value="Registreren">
    </label>
  </p>
  <input type="hidden" name="MM_insert" value="registratie">
</form>
<div class="tooltipContent" id="sprytooltip1">&gt; Klik om het formulier te verifiëren en u  te registreren.</div>
<p> </p>
<p> </p>
<script type="text/javascript">
<!--
var sprypassword2 = new Spry.Widget.ValidationPassword("sprypassword2", {validateOn:["blur"], minChars:6, maxChars:15, minAlphaChars:1, minNumbers:1, maxAlphaChars:14, maxNumbers:14, minUpperAlphaChars:0, maxUpperAlphaChars:14, minSpecialChars:0, maxSpecialChars:0});
var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:["blur"], minChars:6, maxChars:50});
var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "none", {isRequired:false, validateOn:["blur"], minChars:0, maxChars:100});
var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "integer", {validateOn:["blur"], isRequired:false, minValue:0, maxValue:9999999999, minChars:9, maxChars:10});
var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4", "integer", {validateOn:["blur"], minValue:0, maxValue:9999999999, minChars:9, maxChars:10});
var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "email", {isRequired:false, validateOn:["blur"], minChars:7, maxChars:50});
var sprytextfield6 = new Spry.Widget.ValidationTextField("sprytextfield6", "email", {validateOn:["blur"], minChars:7, maxChars:50});
var sprytextfield7 = new Spry.Widget.ValidationTextField("sprytextfield7", "none", {validateOn:["blur"], isRequired:false, minChars:0, maxChars:50});
var sprytextfield8 = new Spry.Widget.ValidationTextField("sprytextfield8", "none", {validateOn:["blur"], isRequired:false, minChars:0, maxChars:50});
var spryselect1 = new Spry.Widget.ValidationSelect("spryselect1");
var sprytextfield9 = new Spry.Widget.ValidationTextField("sprytextfield9", "none", {validateOn:["blur"], maxChars:50, minChars:1});
var sprytextfield10 = new Spry.Widget.ValidationTextField("sprytextfield10", "none", {validateOn:["blur"], minChars:1, maxChars:50});
var sprytextfield11 = new Spry.Widget.ValidationTextField("sprytextfield11", "integer", {validateOn:["blur"], minChars:2, maxChars:2, minValue:1, maxValue:31});
var spryselect2 = new Spry.Widget.ValidationSelect("spryselect2", {validateOn:["blur"]});
var sprytextfield12 = new Spry.Widget.ValidationTextField("sprytextfield12", "integer", {minChars:4, maxChars:4, validateOn:["blur"], minValue:1920, maxValue:2050});
var sprytextfield13 = new Spry.Widget.ValidationTextField("sprytextfield13", "none", {validateOn:["blur"], isRequired:false, minChars:0, maxChars:100});
var sprytextfield14 = new Spry.Widget.ValidationTextField("sprytextfield14", "none", {isRequired:false, validateOn:["blur"], minChars:0, maxChars:50});
var sprytextfield15 = new Spry.Widget.ValidationTextField("sprytextfield15", "none", {minChars:0, maxChars:50, isRequired:false, validateOn:["blur"]});
var spryselect3 = new Spry.Widget.ValidationSelect("spryselect3", {validateOn:["blur"], isRequired:false});
var spryselect4 = new Spry.Widget.ValidationSelect("spryselect4", {validateOn:["blur"]});
var sprytextfield16 = new Spry.Widget.ValidationTextField("sprytextfield16", "none", {validateOn:["blur"], isRequired:false, minChars:0, maxChars:50});
var spryselect5 = new Spry.Widget.ValidationSelect("spryselect5", {isRequired:false, validateOn:["blur"]});
var sprytextfield17 = new Spry.Widget.ValidationTextField("sprytextfield17", "integer", {validateOn:["blur"], isRequired:false, minValue:0, maxValue:9999999999, maxChars:10, minChars:9});
var spryconfirm1 = new Spry.Widget.ValidationConfirm("spryconfirm1", "paswoord", {validateOn:["blur"]});
var sprycheckbox1 = new Spry.Widget.ValidationCheckbox("sprycheckbox1", {validateOn:["blur"]});
var sprytextarea1 = new Spry.Widget.ValidationTextarea("sprytextarea1", {validateOn:["blur"], minChars:1});
var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1", "#registreren", {useEffect:"fade", hideDelay:2});
var sprytextarea2 = new Spry.Widget.ValidationTextarea("sprytextarea2", {validateOn:["blur"], minChars:3});
//-->
</script>
</body>
</html>
<?php
mysql_free_result($Contactenlijst);
?>

In your PHP code, replace-

}
$editFormAction = $_SERVER['PHP_SELF'];

on this subject.

}

?>

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "registreren")) {

// add your captcha verification code here ....

// captcha most likely ends with a header command to relocate failed attempts, so make sure you add

// an exit() command after that header.  Otherwise, allow the successful captcha to fall into the following

// block of code.

}

do not neglect this closing brace

?>

$editFormAction = $_SERVER['PHP_SELF'];

Tags: Dreamweaver

Similar Questions

  • Error: Unable to connect to the database.  Please check the databases and verify the database is accessible.

    Hello.

    Hello

    Do you have any idea of this error, I went through a few forums, but I still got the same message.

    FDM is my server on computer A

    and my Foundation + shared on machine B


    Error: Unable to connect to the database.  Please check the databases and verify the database is accessible.

    Hello

    Browse the following post

    Failed to create the application of FDM

    (mark this message as useful or appropriate if that helps!)

    concerning

    -DM

  • Reading file from the ftp server and importing data into the table

    Hi experts,

    Well, basically, I text with different layout files have been uploaded to an ftp server. Now, I must write a procedure to recover these files, read and insert data into a table... what to do?

    your help would be greatly helpful.

    Thank you

    user9004152 wrote:
    http://it.Toolbox.com/wiki/index.php/Load_data_from_a_flat_file_into_an_Oracle_table

    See the link, hope it will work.

    It is an old method, using the utl_file_dir parameter that is now obsolete and which is frankly a waste of space when external tables can do exactly the same thing much more easily.

  • dynamic action turns an article based on the result, and checks the database!

    I use Apex 4.1

    I do not know how to accomplish the following:
    If a pick list is changed, a function is checked and based on the results of a another field is disabled or enabled.

    I created a dynamic action (change) that executes a PL/SQL code, now I need to disable the other element.

    the problem is that I can't save the dynamic action because of the sign #.

    example:
    Start
    HTP.p ("< script type =" text/javascript"> '");
    HTP.p ('$('#P35_FT_00010_DOC_NO').attr ("readonly", "true")');
    HTP.p ("< /script >");
    end;

    I tried document.getElementById, but an error occurs also when I try to save.

    I think the wrong way?... Help, please

    1. create a step forward (not the simple/standard one) dynamic action.
    2. create initially unconditionally (the wizard will not let you take the PL/SQL expression as a condition but we will go back and change it later)
    3 assume that TRUE from your PL/SQL will lead to disable the item, then choose 'Disable' and the item you want to disable.
    4. Once created, go back in the DA and change the status of PL/SQL expression and put your PL/SQL in there (suppose you have a function returns boolean called MY_FUNC and TRUE to him means disable).
    5 copy the DA in its entirety to a new DA will be FALSE to activate the element.
    6. Once copied, go into the new DA and change the status of PL/SQL to NOT (my_func).
    7 change the REAL action of the DA to activate the element.

    So now you should have two similar DAs... one for when MY_FUNC is true and disables the element, a when "NOT (my_func)" is true and allows the element.

    If you do not disable, you can run javascript instead to set readonly. It seems that this is kind of what you tried to do, but you seem to use a jQuery selector, I suppose that (I did not recognize your syntax to off the bat)?

    Try to use the javascript API instead Apex:

    if ($v('P35_EN_DIS_DOC') == 1 )
      $x('P35_FT_00010_DOC_NO').readOnly='true';
    else
      $x('P35_FT_00010_DOC_NO').readOnly='';
    
  • Tools to check the database of exchange 2010 is healthy or not

    Dear Sir/Madam,

    All the tools to check the exchange 2010 database is healthy or not, I hope that do not need to dismount the store. Thank you!

    Dennis

    Hello, Dennis

    Thank you for visiting the Microsoft Answers site. The question you have posted is related to Microsoft Exchange Server 2010 and would be better suited in the Exchange Server TechCenter community. Please visit the link below to find a community that will support what ask you:

    http://social.technet.Microsoft.com/forums/en-us/exchangesvrgeneral/threads

  • How to check the database is created in the database of node 2 RAC

    Hi all

    Please allow questions maybe too obvious. I'm not familiar with RAC and ASM.
    virtual box (Windows 7)

    2 built nodes on Linux 6.1 Windows 64-bit virtual machine.
    11.2.0.3 software grid & database.
    One of DB name is demo
    Node1 (demo1)
    Node2 (demo2)


    1. I installed the 11.2.0.3 grid software and set up ASM with her. The installation seems to succeed.

    I am able to use view state using crsctl (see the log)

    2. I installed the database software and you want to create a database (demo) by default. the software from 95%, but not able to realized the dbca.

    I see that the asm_pmon is running, but not able to see the process of demo db. I think at this point, I don't have my demo of database has been created yet.

    Yes, question
    1: is the database created?
    2. I try to use dbca to create my demo db, but at the stage of creation of the 'copy of the database files' - she complaint ORA-03114: not connected to ORACLE
    ???? What? What oracle server trying to connect?
    3. If the database is created, how to start the database, in particular it has 2 instances (demo1 and demo2)?

    Please advise!

    Thank you very much!




    [grid@demo1 ~] $ crsctl stat res t
    --------------------------------------------------------------------------------
    TARGET STATE SERVER STATE_DETAILS NAME
    --------------------------------------------------------------------------------
    Local resources
    --------------------------------------------------------------------------------
    ORA. DATA.dg
    Demo1 ONLINE
    Demo2 online
    ORA. LISTENER.lsnr
    Demo1 ONLINE
    Demo2 online
    ORA.asm
    Demo1 Started online
    Demo2 Started ONLINE
    ORA. GSD
    In offline mode offline demo1
    Demo2 offline offline
    ORA.net1.Network
    Demo1 ONLINE
    Demo2 online
    ORA.ons
    Demo1 ONLINE
    Demo2 online
    --------------------------------------------------------------------------------
    Cluster resources
    --------------------------------------------------------------------------------
    ORA. LISTENER_SCAN1. LSNR
    1 demo1 ONLINE
    ORA.demo1.VIP
    1 demo1 ONLINE
    ORA.demo2.VIP
    1 demo2 online
    ORA. CVU
    1 demo1 ONLINE
    ORA. OC4J
    1 demo1 ONLINE
    ORA.scan1.VIP
    1 demo1 ONLINE

    Published by: 969880 on November 13, 2012 14:18

    1. What is sure, is that your database is not registered in OCR because there are missing elements in crsctl stat res t exit for database instances.
    2. default DBCA trying to restore an RMAN backup to create a database. DBCA probably also try to connect to the new instance of the database to run scripts.
    3. you must use:

    srvctl start database -d demo
    

    This should start all database instances.

    But first try to check the DBCA logs that should be under $ORACLE_HOME/cfgtoollogs/dbca and to correct related errors.

  • Problem using applescript to put data into the table of numbers with column heads

    I have extracted the data from certain Web pages and want to place the data items in a table of numbers.  I wrote the applescript to extract pairs of data into two lists, but encountered a problem when you try to put the data items in a table of numbers.

    I hope I've isolated the problem eventually reduce version of the data table and writing.

    Calendar_Month

    Alvarez

    Laundry

    Linen

    Products

    March-2014

    April 2014

    May-2014

    Totals:

    0.00

    0.00

    0.00

    0.00

    Define theLabels to {"Alvarez", "Flax", "Laundry", "Products"}

    the nominative value {11, 22, 33, 44}

    Tell application "Numbers."

    say table 1 on sheet 1 of 1

    rowIndex Set of 3

    q Set of 2

    say the line rowIndex

    colHead theLabels point q value

    the columnIndex value address column colHead

    tell the cell (columnIndex)

    value defined in point q of the nominative case

    tell the end

    tell the end

    tell the end

    tell the end

    I arbitrarily chose to line 3 of the table to demonstrate the problem.

    Each data item is associated, due to its position in the list, with a label that determines the column of the data table, where it should be placed.

    The illustrated script pitches the 2nd data element in the list in the column headed "Lin".  This seems to work ok.  But if q is set to 1 the script fails with

    get address of column "Alvarez" in line 3 of table 1 to sheet 1 of the document 1

    -> error number - 1728 column "Alvarez" in line 3 of table 1 of sheet 1 of document 1

    It fails also with q the value 3 or 4.

    I probably did something really stupid, but I can't understand this behavior.  Advice please?

    Under: Numbers v.3.6.1 Script Editor 2.7 2.4 OS X 10.5.5 Applescript

    Two questions.

    (1) the order of the text in theLabels = {"Alvarez", "Flax", "Laundry", "Products"} and differ from the order of the text in the header row. Is this correct?

    (2) you are putting the value 22 (point 2 of nominative) in cell D3, where column heading of D = "Flax", which is article 2 of the theLabels?

    Respect,

    H

  • How to send the SQL for SQL Server statement and return data without using database connectivity Kit?

    Hi, I tried to figure out how to extract data from my SQL Server databases and reading messages and to do some tests with examples, I can get data connection type in my SQL server, but so far nothing helps.  Is it possible to get data from a SQL Server database without using the database connectivity Toolkit?  and if so, how?  are there whitepapers and/or examples of this?  So far, I can't find something that works.  Thank you.

    Jesse - what is your reason for not using the database connectivity Toolkit? It is by far the best way to recover the data.

  • Read the BLOB and insert data into a table

    Hi all

    Let us examine below on Oracle DB 12 c:

    create table xx_test3 (c blob);
    
    insert into xx_test3 (c) values (utl_raw.cast_to_raw(
    'azertyuiop,qsdfghjklm,wxcvbn'));
    
    
    create table xx_target (col1 varchar2(50));
    
    
    
    

    Can someone guide me how to read the data and insert it into the xx_target table?

    Necessary result is:

    
    select * from xx_target;
    
    
    COL1                                              
    
    --------------------------------------------------
    azertyuiop                                        
    qsdfghjklm                                        
    wxcvbn                                            
    
    3 rows selected.
    
    
    
    
    

    Thanks in advance,

    Stoyanov.

    insert into xx_target (col1)

    with the data as)

    Select utl_raw.cast_to_varchar2 (dbms_lob.substr (c, 32000, 1)) CBC

    of xx_test3

    )

    Select regexp_substr (CBC, ' [^,] +', 1, level)

    from the data

    connect by level<= regexp_count(src,="" ',')="" +="">

  • How to check the database pending?

    Hello

    How to check if standby DB is used in Oracle 8.1.7.2.0? I just want to know the initialization parameters that must be defined for the destinations journal archive.

    OS - AIX 3 4

    Cordially,

    Bala

    Don't know if you are interested, but this seems to be the list:

    http://docs.Oracle.com/CD/A87860_01/doc/server.817/a76995/standby.htm#31537

    Best regards

    mseberg

  • Generate the command Id and insert data into two different tables: oracle apex 5.0

    I have three tables. name of the tables: PRODUCT, ORDER_HEADER, ORDER_DETAIL. I took REPORT inter ASSETS in which the VALUES from TABLE product. I need to use the trigger here, there is a TEXT ARTICLE called ORDER ID: it will generate through trigger. so whenever new order placed order id must be unique. There is a button when this button is clicked, the VALUES of REPORT must be inserted in to ORDER_HEADER , ORDER_DETAIL (in fact, I am in confusion is it even possible).

    I tried to create the trigger: not work if


    CREATE OR REPLACE TRIGGER "EMP_TRG1".

    Before Insert on order_header

    for each line

    Start

    If: new. Order_ID is null

    then

    Select lpad (demo_seq.nextval, 8, '0'): new. Order_ID order_header;

    end if;

    end;

    SQL:

    Select

    apex_item. Text(1,p.PRODUCT_ID) PID.

    PN.product_name,

    apex_item. Text(2,p.PRODUCT_QTY) qt.

    apex_item. Text(3,p.unit_price) upward,

    apex_item. Text(4,p.TOTAL_AMOUNT) am

    OMS_SHIP_CART_DETAIL p, pn OMS_PRODUCT

    where p.product_id = pn.product_id

    DA:

    var arr_f01 = [];

    var arr_f02 = [];

    var arr_f03 = [];

    var arr_f04 = [];

    var arr_f05 = [];

    product_id var;

    unit_price var;

    Var Qty;

    var total_1;

    () $("input[name='f01']").each

    function() {}

    product_id = $(this).closest('tr') .children ('td [headers = 'PID']') .text ();

    unit_price = $(this).closest('tr') .children ('td [headers = "Uprice"]') .text ();

    Qty = $(this).closest('tr') .children ('td [headers = "Qty"]') .text ();

    total_1 = $(this). Closest ('tr'). Children ('td [headers = "total"]'). Text();

    arr_f01.push ($(this).) Val());

    arr_f02.push (product_id);

    arr_f03.push (total_1);

    arr_f04.push (unit_price);

    arr_f05.push (Qty);

    }  );

    (apex). Server.Process

    "Insert a command."

    , {f01: arr_f01, f02: arr_f02, f03: arr_f03, f04: arr_f04, f05: arr_f05}

    }

    , {dataType: "text", success: function (pData) {alert ('added product') ;}}

    );

    Ajax callback:

    declare

    l_count number;

    Start

    -insert into OMS_ORDER_HEADER (USER_ID, TOTAL_AMOUNT, batch, ORDER_DATE) values(:P1_USER_ID,:P42_TOTAL,'PENDING',SYSDATE);

    I'm looping 1.apex_application.g_f01.count

    insert into OMS_ORDER_DETAIL (PRODUCT_ID, UNIT_QTY, UNIT_PRICE, TOTAL_AMOUNT)

    values (APEX_APPLICATION. G_F01 (i), APEX_APPLICATION. G_F03 (i), APEX_APPLICATION. G_F04 (i), APEX_APPLICATION. G_F05 (i));

    commit;

    end loop;

    end;

    Hi Dominique,.

    I create a process page away present in your application

    declare
      l_order_id varchar2(8);
    begin
      insert into order_header(ORDER_ID
                            , STATUS
                            , ORDER_DATE)
                      values(lpad(demo_seq.nextval,8,'0')
                            , 'Pending'
                            , sysdate)
      returning ORDER_ID into l_order_id; 
    
      for rec in(select ID
                      , QTY
                      , PRICE
                  from product)
      loop 
    
        Insert Into Order_Detail ( ORDER_ID
                                  , PRODUCT_ID
                                  , QTY
                                  , UNIT_PRICE)
                            Values(l_order_id
                                  , rec.id
                                  , rec.qty
                                  , rec.price); 
    
        commit;
      end loop;
    end;
    

    Please check and let me know.

    Kind regards

    Jitendra

  • using advanced actions to determine if the correct keys have been selected

    I use Captivate 5 on Windows 7 to create a quiz that will test the ability of the users to select inappropriate e-mail parts by clicking on them.  So far, I have set up the scene and left buttons to image for each item in the email.  Each sentence, the address line, the subject line, etc it's own image button.  The goal is to create a user by clicking on the item of electronic mail and it highlighted red (selected).  Once the user has highlighted all the elements that they think is inappropriate, it will be then click on the ' send' button (button image), that will calculate if the correct image buttons have been selected.

    Here is an example of the stage with all image buttons:

    11-19-2012 4-12-03 PM.png

    My question is how I would start setting up advanced actions 1) select each button when you click it, and then turn off highlight when clicked again) 2 calculate if the correct buttons are selected when you click on the button send 3) the user to correct or incorrect slide, based on their selections

    Thanks in advance for any help you can provide.

    FOR INFO.  The right answer for this mail would be if

    Button_15

    Button_17

    Button_18

    are selected and

    Button_12

    Button_16

    Button_19

    Button_20

    Button_21

    Button_22

    are not selected

    OK, an example of file which seems to work. I created in Captivate 6 but the workflow will be the same in 5.5. Avoided using the new features. I used boxes to click on text fragments. I was wondering if you want to limit the number of fragments which can be clicked (is not in the scenario):

    • Enter by clicking on the parts of text, their labeled CB1_NOK, CB_2OK,... even if it is not so important if she'll give a score or not. I had 3 good.
    • To correct, click boxes, I added a score (5) in the accordion reporting, audited include in Quiz and add to the Total. to bad I did nothing in this accordion; Click on boxes have a break before the break of the button check, I've shortened their duration at 2secs, while check button stops at 2.5secs
    • I put a partially transparent rectangle on each fragment of text that has been set to invisible at the beginning (properties panel), marked their HL1, HL2,...
    • Created a variable user for each area of click with an initial value of 0: v_cb1, v_cb2, v_cb3...
    • Created a conditional action advanced for each box, used two decisions (but Then/Else was also possible), labeled them even as a click box (is possible if the click is first box). Here are the screenshots as an example of the second click box; ATTENTION: the sequence of the first and second decisions is important:

    • The Check button triggers another conditional action, where I check the variable cpQuizInfoPointsscored of system and branch to the appropriate slide. I used a slide "Correct" and "Incorrect":


    Lilybiri

  • Unable to connect to the database, check the creation of credentials 11.1.2.3 FDM

    Hi all

    I installed the Hyperion 11.1.2.3 with Oracle 11 g version. Installation and Configuration completed successfully.

    I am able to connect to Essbase, Planning, HFM. but when I try to create FDM app, I get an error message

    Unable to connect to the database, check the database credentials.

    If one is confronted with the same problem, please help me to solve this problem.

    Kind regards
    Mady

    You have added the basic data for the FDM database information in the tnsnames file, the location of the file used by EPM are defined by the TNS_ADMIN environment variable

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to check if utl_file was used in the database with the n ° / limited audit

    How can you check the database to see if any user has used the UTL_FILE pacakge?

    Thank you

    Another angle based priv study's directory objects. Read and write access to a directory object is necessary so UTL_FILE work. If some patterns have a write access to the directory objects, can create files.

    A schema that has the priv to create any directory has full access to create any necessary directory object.

    This, along with the methods suggested above, will restrict just what patterns have code and the privs required to use UTL_FILE successfully.

    If the code has been dynamic PL/SQL (an anonymous block), then who does identify actual code executed UTL_FILE, very difficult.

  • Check the log to delete oracle data file to be deleted from the root user.

    Any body can help me find the log to make sure all traces of the data files that are deleted from the root to the hp - ux Server user (and the sys log has already been modified by the root user).
    So is there a way to check the database or deleted from server level to check track of log files data files.

    Salvation;

    If, you don't have no OS level verification that it is difficult to find to answer your quesiton. For example, our system of verification on OS (also root password no case) and Db level.

    PS: @Sybrand thanks, I missed that part.

    Respect of
    HELIOS

Maybe you are looking for

  • Access to the e-mail of Motorola Bravo

    I changed my yahoo email password online. I get an e-mail authentication error on my Motorola Bravo now and I can't access my email from the phone. Any suggestions on what I need to do to fix this?

  • DV6-6135dx: Beats Audio

    the HP laptop is doing well... I had to reduce some of the settings in the game in the need for speed in 2012... and its relly good after that... my Question is, is it Bass speakers?... because I can see the parameters of beats, but even if I put the

  • Problem of broken links

    Can anyone help? Whenever I try to open a link I get the following error message: "error 102 (net: ERR__CONNECTION__REFUSED)": unknown error. "" The Internet site at: _ may be temporarily down or it may have moved permanently to a new web address. "I

  • I am trying to register but it never allows me to present or even connect through other accounts.

    I am trying to record my photosmart 7510, but when I try to connect, it does not. Click on "sign in" and it just sits there. Tried it in IE, Firefox and Safari.  I have a registered account, but cannot open a session. I was able to call the assistanc

  • Libraries works does not properly after Downgrade to Windows 7 of 10

    Demoted from 10 to 7 through "Go back to Windows 7" in the control panel-> update of the security & -> Recovery Windows 10. Everything seemed successful, having problems with scheduled tasks (but that's another issue, see reference). All my libraries