Welcome Guest, Not a member yet? Register   Sign In
Undefined index: submit_form in C:\wamp\www\cms\private\youreditor.php on line 23
#1

[eluser]adamsonit[/eluser]
Code:
<?php
//This section should deal with the MagicQuotes and slashes
function nukeMagicQuotes() {
if (get_magic_quotes_gpc()) {
function stripslashes_deep($value) {
$value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
return $value;
}
$_POST = array_map('stripslashes_deep', $_POST);
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
}
}
?>
<?php nukeMagicQuotes(); ?>
<?php  
  // Connect to the database
  $cnx = mysql_connect("localhost", "root", "")
         OR die("Unable to connect to database!");
  mysql_select_db("fckdata", $cnx);
  
  
  if ($_POST['submit_form'] == 1) {
    // Save to the database.
    $data = mysql_real_escape_string(trim($_POST['fcktext']));
    $res = mysql_query("UPDATE fck_data SET data = '".$data."' WHERE id = 1");
    
    if (!$res)
      die("Error saving the record!  Mysql said: ".mysql_error());
    
    // Redirect to self to get rid of the POST
    header("Location: youreditor.php");
  }

  include_once("../FCKeditor/fckeditor.php");
?&gt;<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
&lt;html &gt;
&lt;head&gt;
&lt;title&gt;Test FCKeditor&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

<h1>Test FCKeditor</h1>

&lt;form action="youreditor.php" method="post"&gt;
&lt;?php
  // Get data from the database
  $query = mysql_query("SELECT data FROM fck_data WHERE id = 1");
  $data = mysql_fetch_array($query);

  // Configure and output editor
  $oFCKeditor = new FCKeditor('fcktext');
  $oFCKeditor->BasePath = "../FCKeditor/";
  $oFCKeditor->Value    = $data["data"];
  $oFCKeditor->Width    = 540;
  $oFCKeditor->Height   = 400;
  echo $oFCKeditor->CreateHtml();
?&gt;
<br />
&lt;input type="hidden" name="submit_form" value="1" /&gt;
&lt;input type="submit" value="Save Form" /&gt;
&lt;/form&gt;

&lt;/body&gt;
&lt;/html&gt;


&lt;?php
  // Close the database connection
  mysql_close($cnx);
?&gt;


Messages In This Thread
Undefined index: submit_form in C:\wamp\www\cms\private\youreditor.php on line 23 - by El Forum - 02-19-2009, 08:01 AM



Theme © iAndrew 2016 - Forum software by © MyBB