Posted by:
Jippy
(---.cable.ubr08.azte.blueyonder.co.uk)
Right... I've just downloaded WAMP5 and created a relation. Here is the intension: ITEMTYPE(ItemType/char(50)). Pretty simple huh? I made one entry to the table.
Here is the index page:
<?php
$qry = "select * from ITEMTYPE";
$recordset = mysql_query($qry) or die( "query failed"

;
$row = mysql_fetch_array($recordset) or die( "fetch failed"

;
echo $row["ItemType"]
?>
And nothing happens. Not even an error message. Nothing. Help please?!? Note: This worked fine on my old version of apache1 and php4. (Which I was told to upgrade from cos $_POST didn't work very well... which it didn't)
I have been told to avoid php like the plague... is this a possible solution?