Jump to content

mysql results from multiple rows in database table


themanronnie

Recommended Posts

I am running a mysql query with the code below but i cannot get the results from multiple rows in a table.

I echo the results and all i get is Array. Help will be appreciated. Thank you

 

The $row should echo all the fields under code1 in the table.

 

Thank you

mysql_connect('localhost', 'u', 'C');
mysql_select_db('u');
//
$result = mysql_query("SELECT code1 FROM codes")
or die(mysql_error());
$row = mysql_fetch_assoc($result);
echo ("<center> <font color=#FF0000 face=Verdana size=2><b>$row</b></font>");

Link to comment
Share on other sites

the reason for the echo statement was to see exactly what the problem was. This is what i want done

To receive a variable from a form and test it against all the rows in a database column and if it finds one that corresponds to that row, then go to another page

The code is below

 

$code1=$_POST['code'];
mysql_connect('localhost', 'u', 'C');
mysql_select_db('u);
//
$result = mysql_query("SELECT code1 FROM codes")
or die(mysql_error());
$row = mysql_num_rows($result);

//
if ($row[0] =='$code1') {
include ("mynewpage.php");
   } else {
   echo ("<center> <font color=#FF0000 face=Verdana size=2><b>Invalid Code!</b></font>");
   include("oldpage.php"); } 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.