Hola, gracias por responder. Por si ayuda a algo, diré que lo estoy haciendo en dreamweaver. Intenté anteriormente tomar el nombre del usuario mediante la variable de sesión, haciendo esto:
Código PHP:
Ver original$usuario_sesion = $_SESSION['MM_Username'];
y así poder insertarla después en la base de datos, pero no me resultó y lo borré. Sé muy poco de PHP y lo estoy haciendo como puedo con videos de youtube, foros, etc, por eso está todo tan "raro" :) Espero no confundir mucho y perdón por las molestias :)
INSERTAR.PHP
Código PHP:
Ver original<?php
$recibo_area=$_POST['editor1'];
require('connect_db.php');
mysql_query("INSERT INTO tabla(AQUÍ LA DUDA PORQUE DEBERÍA IR EL USUARIO,historias,fecha,Hora) VALUES (AQUÍ LA DUDA PORQUE DEBERÍA IR EL USUARIO, '$_REQUEST[editor1]',NOW(),current_time)",$link) echo 'Se ha insertado correctamente.';
?>
INDEX.PHP:
Código PHP:
Ver original<?php require_once('Connections/prueba.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
}
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;
}
}
?>
<?php
// *** Validate request to login to this site.
}
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) { $_SESSION['PrevUrl'] = $_GET['accesscheck'];
}
if (isset($_POST['textfield'])) { $loginUsername=$_POST['textfield'];
$password=$_POST['textfield2'];
$MM_fldUserAuthorization = "";
$MM_redirectLoginSuccess = "sesion.php";
$MM_redirectLoginFailed = "dreamweaver2.php";
$MM_redirecttoReferrer = false;
$LoginRS__query=sprintf("SELECT usuario, correo FROM concurso WHERE usuario=%s AND correo=%s", GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
if ($loginFoundUser) {
$loginStrGroup = "";
//declare two session variables and assign them
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
if (isset($_SESSION['PrevUrl']) && false) { $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
}
header("Location: " . $MM_redirectLoginSuccess ); }
else {
header("Location: ". $MM_redirectLoginFailed ); }
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script src="ckeditor/ckeditor.js"></script>
<script>
window.onload = function() {
CKEDITOR.replace( 'editor1' );
};
</script>
</head>
<body>
<div align="center">
<table width="962" height="513" border="1">
<tr>
<td colspan="3">
</tr>
<tr>
<td><div align="center"> <form method="POST" action="insertar.php">
<textarea name="editor1" id="editor1" rows="10" cols="80">
This is my textarea to be replaced with CKEditor.
</textarea>
<script>
// Replace the <textarea id="editor1"> with a CKEditor
// instance, using default configuration.
CKEDITOR.replace( 'editor1' );
</script><p>
<input type="submit"> <input type="reset"></p></p>
</form><?php
if (isset($_POST['submit'])) { require("insertar.php");
}?>
</div></td>
<th><div align="center">
</tr>
<tr>
<td><div align="center">
<form id="form1" name="form1" method="POST" action="<?php echo $loginFormAction; ?>">
<p>
<label for="textfield">Correo</label>
<input type="text" name="textfield" id="textfield" />
</p>
<p>
<label for="textfield2">Contraseña</label>
<input type="text" name="textfield2" id="textfield2" />
</p>
<p>
<input type="submit" name="button" id="button" value="Acceder" />
</p>
</form>
</div></td>
<td><div align="center"></div></td>
<td><div align="center"></div></td>
</tr>
</table>
</div>
</body>
</html>