The answer you entered to the math problem is incorrect.

PHP QueryString (1 reply)

Hi,

I am new to using MYSQL with PHP,

I am trying to create an inventory webpage for our intranet system,

currently I have:

===========================

$ypcodes_sql = 'select * from COMPUTERS';

$ypQuery = mysql_query($ypcodes_sql,$conn) or die(mysql_error());

while($ypArray = mysql_fetch_array($ypQuery))

{

echo('
');

echo($ypArray['COMPUTER_NAME']);

echo(' ');

echo($ypArray['DEPARTMENT_ID']);

echo(' ');

echo($ypArray['USER_NAME']);

echo(' ');

echo($ypArray['IP_ADDRESSES']);

echo(' ');

}

====================

Which displays some of the info about each machine,

I have a lot more info stored in the DB though about each machine and want to be able to click on a computer name and be put to a more detailed view of the computer, I am told I could do this with QueryString but I am a bit stumped to be honest,

Anyone got any tips on how to do this?

Cheers,

Andy

Reply

Please solve the math problem above and type in the result. e.g. for 1+1, type 2.