Comunidad de diseño web y desarrollo en internet online

Error en buscador php mysql

Citar            
MensajeEscrito el 27 Jun 2011 11:40 am
Hola a todos

Estoy realizando un buscador utilizando PHP y MySQL junto a la ayuda de la interfaz de Dreamweaver.

Lo hago mediante la ayuda de un juego de registro [Consulta] y cuando introduzco ahí todos los datos y realizo una prueba va bien, pero una vez que acepto e inserto los datos dinámicos en una tabla dinámica y abro el firefox para la vista previa me sale el siguiente error al realizar cualquier búsqueda:

Warning: require_once(Connections/lugointernet.php) [function.require-once]: failed to open stream: No such file or directory in /home/khylenes/public_html/resultados2.php on line 1

Fatal error: require_once() [function.require]: Failed opening required 'Connections/lugointernet.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/khylenes/public_html/resultados2.php on line 1

Me sale que tengo error en la linea 1, este es el código:

Código PHP :

<?php require_once('Connections/lugointernet.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;
}
}

$colname_Recordset1 = "-1";
if (isset($_GET['Empresa'])) {
  $colname_Recordset1 = $_GET['Empresa'];
}
mysql_select_db($database_lugointernet, $lugointernet);
$query_Recordset1 = sprintf("SELECT * FROM Quality WHERE Empresa = %s", GetSQLValueString($colname_Recordset1, "text"));
$Recordset1 = mysql_query($query_Recordset1, $lugointernet) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!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>
<p>RESULTADO BUSQUEDA</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table border="1">
  <tr>
    <td>ID</td>
    <td>Raza</td>
    <td>País</td>
    <td>Tamaño</td>
  </tr>
  <?php do { ?>
    <tr>
      <td><?php echo $row_Recordset1['ID']; ?></td>
      <td><?php echo $row_Recordset1['Raza]; ?></td>
      <td><?php echo $row_Recordset1['País']; ?></td>
      <td><?php echo $row_Recordset1['Tamaño']; ?></td>
          </tr>
    <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>


¿Alguien podría iluminarme un poco porfavor? :)

Por Dashiel

15 de clabLevel



Genero:Femenino  

Diseñadora Web

firefox
Citar            
MensajeEscrito el 27 Jun 2011 12:28 pm
Lo que el error dice es que no encuentra el archivo lugointernet.php donde está indicado en la función require_once().

Por DriverOp

Claber

2510 de clabLevel



 

opera
Citar            
MensajeEscrito el 27 Jun 2011 01:02 pm

DriverOp escribió:

Lo que el error dice es que no encuentra el archivo lugointernet.php donde está indicado en la función require_once().


Mil gracias por contestar DriverOP, ahora desde que coma pruebo a realizar una cosa y a ver si entonces funciona perfectamente. ^^ Tante Grazie

Por Dashiel

15 de clabLevel



Genero:Femenino  

Diseñadora Web

firefox
Citar            
MensajeEscrito el 27 Jun 2011 01:38 pm
Siento el doble post, DriverOP, exactamente era lo que comentabas. Yo subí todo al FTP pero debio de suceder un problema y no lo mostraba, no se ¡Debí percatarme antes! Pero gracias por ayudarme :)

Ya esta resuelto, pero por cierto ¿Sabes por que ahora me encuentra la tabla pero ponga el resultado que le ponga esta aparece vacía? Sin contenido alguno dentro de ella :/ Inclusive aunque lo ponga bien.

Gracias nuevamente ^.^

Por Dashiel

15 de clabLevel



Genero:Femenino  

Diseñadora Web

firefox
Citar            
MensajeEscrito el 27 Jun 2011 02:52 pm
No lo sé, pero en tu lugar revisaría los datos de conexión ya que dices que has subido esto a un FTP supongo que los datos de conexión que usas en local son diferentes en el servidor remoto.

Por DriverOp

Claber

2510 de clabLevel



 

opera
Citar            
MensajeEscrito el 27 Jun 2011 06:33 pm
No era eso DriverOP pero he terminado encontrando el problema, mil gracias.

Resuelto

Por Dashiel

15 de clabLevel



Genero:Femenino  

Diseñadora Web

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.