On Fri,  7 Sep 2001 10:11, 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"];

You would need to specify them in a print function, then.
print $row["Mobile"];
print $row["AdminContact"]; etc etc

-- 
David Robley      Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES      Flinders University, SOUTH AUSTRALIA  

   Famous last words - Don't worry, I can handle it.

-- 
PHP General 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