Bien ahora mi problema es que quiero mostrar el inventrio del usuario-
Tengo.:
tabla objetos:
id
nombre
img
tabla relacion:
id_obj
id_usu
Y quiero que al ingresar a la pagina de inventario muestro los de uno, para eso hize este code:
Código PHP:
Ver original<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_Noone = "X";
$database_Noone = "X";
$username_Noone = "X";
$password_Noone = "X";
?>
<?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;
}
}
$colname_usuarios = "-1";
if (isset($_SESSION['MM_Username'])) { $colname_usuarios = $_SESSION['MM_Username'];
}
$query_usuarios = sprintf("SELECT id, usuario FROM usuarios WHERE usuario = %s", GetSQLValueString
($colname_usuarios, "text"));
$query_objetos = "SELECT * FROM objetos";
$query_relacion = "SELECT * FROM inventario WHERE id_u = $row_usuarios[id] ORDER BY id_o ASC";
?>
<html>
<table border="1">
<?php do { ?>
<tr>
<td><?php echo $row_relacion['id_o']; ?></td>
</tr>
</table>
</html>
Y asi , se me visualiza el ID del objeto.
Lo que yo quiero es que se visualize el nombre y su imagen