Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/01/2013, 22:06
Plololox
 
Fecha de Ingreso: diciembre-2010
Mensajes: 13
Antigüedad: 13 años, 4 meses
Puntos: 0
You don't have permission to access on this server

Hola bueno acabo de crear una conexion de prueba para ver si mi pagina estaba mal, y lo que ocurre es que cada vez que quiero ingresar datos a mi base de datos en phpmydamin me sale el error del titulo :S
Código PHP:
<?php require_once('Connections/conexionprueba.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;
}
}

$editFormAction $_SERVER['PHP_SELF'];
if (isset(
$_SERVER['QUERY_STRING'])) {
  
$editFormAction .= "?" htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset(
$_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  
$insertSQL sprintf("INSERT INTO `1` (`2`, `3`) VALUES (%s, %s)",
                       
GetSQLValueString($_POST['Elemento2'], "text"),
                       
GetSQLValueString($_POST['Elemento3'], "text"));
  
mysql_select_db($database_conexionprueba$conexionprueba);
  
$Result1 mysql_query($insertSQL$conexionprueba) or die(mysql_error());

  
$insertGoTo "index.html";
  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"] == "form2")) {
  
$insertSQL sprintf("INSERT INTO `1` (`1`, `2`, `3`) VALUES (%s, %s, %s)",
                       
GetSQLValueString($_POST['Elemento'], "int"),
                       
GetSQLValueString($_POST['Elemento2'], "text"),
                       
GetSQLValueString($_POST['Elemento3'], "text"));

  
mysql_select_db($database_conexionprueba$conexionprueba);
  
$Result1 mysql_query($insertSQL$conexionprueba) or die(mysql_error());

  
$insertGoTo "index.html";
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$insertGoTo .= (strpos($insertGoTo'?')) ? "&" "?";
    
$insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  
header(sprintf("Location: %s"$insertGoTo));
}
?>
<!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>
</head>

<body>
xd
<form action="<?php echo $editFormAction?>" method="post" name="form1" id="form1">
  <input type="hidden" name="MM_insert" value="form1" />
</form>
<form action="<?php echo $editFormAction?>" method="post" name="form2" id="form2">
  <table align="center">
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">1:</td>
      <td><input type="text" name="Elemento" value="" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">2:</td>
      <td><input type="text" name="Elemento2" value="" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">3:</td>
      <td><input type="text" name="Elemento3" value="" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">&nbsp;</td>
      <td><input type="submit" value="Insertar registro" /></td>
    </tr>
  </table>
  <input type="hidden" name="MM_insert" value="form2" />
</form>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>
</html>
lo eh hecho todo x dreamweaver y me sale el siguiente error

Cita:
Forbidden

You don't have permission to access /prueba/< on this server.