assuming table has column1,... column5.  and you want to print all five
 columns.
 
 your print statement would read:
 
 print $row[column1], $row[column2]... ,$row[column5];
 
 you are just printing one column, the TECHCONTACT one...  instead of
all
 the ones you want.
 
 there's also a print array function that would dump the entire contents
 of the ROW array all at once... but it's late and i'm too tired
 (probably lazy) to look it up...   ;-)
 
 Devon wrote:
 >
 > Below is an example of my code which searches a table and prints the
result,
 > the problem is that it only displays the TechContact where I want it
to
 > display all the fields that associated with it in that row off the
colum eg.
 > Mobile, AdminContact etc etc  Any suggestions?
 >
 > if ($TechContact == "")
 > {$TechContact = '%';}
 > $result = mysql_query ("SELECT * FROM enet
 >                          WHERE TechContact LIKE '$TechContact%'");
 > print $row["TechContact"];
 >


-- 
Leo G. Divinagracia III
[EMAIL PROTECTED]

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to