I don't know how to enquiry the "informationtype" which are message and email? How to rewrite the below code?

$information = mysql_query("SELECT * FROM table WHERE informationtype='message'");
$row = mysql_fetch_assoc($information);
$result=($row['informationno']);

Recommended Answers

All 4 Replies

Your code is right.
Are you facing any error?

$information = mysql_query("SELECT * FROM table WHERE informationtype='message' or 'email'");

Correction...

$information = mysql_query("SELECT * FROM table WHERE informationtype='message' OR informationtype='email'");

I wonder how you guys understood the question. Am I that dumb?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.