Jump to content

[SOLVED] Fetching Rows


eugene2009

Recommended Posts

heres the problem.. i have a table named "comments" and in this code i am fetching inputs "tutorialid" and "name" what i want to fetch is a certain id from the "tutorialid" how will i go about doing this.. heres part of the code.

 

$sql = "SELECT tutorialid, name FROM comments LIMIT $offset, $rowsperpage";
$result = mysql_query($sql, $conn) or trigger_error("SQL", E_USER_ERROR);


while ($list = mysql_fetch_assoc($result)) {
   
   echo $list['tutorialid'] . " : " . $list['name'] . "<br />";
} 

 

for instance.. i want all the rows with the tutorial id "3"

can somebody please help? thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/179322-solved-fetching-rows/
Share on other sites

$sql = "SELECT name FROM comments WHERE tutorialid='3' LIMIT $offset, $rowsperpage";
$result = mysql_query($sql, $conn) or trigger_error("SQL", E_USER_ERROR);

$list = mysql_fetch_assoc($result);

$tutorialid=$list["tutorialid"];
$name= $list["name"];
   
   echo $tutorialid." : ". $name."<br />";
}

 

Is this something you can use?

Link to comment
https://forums.phpfreaks.com/topic/179322-solved-fetching-rows/#findComment-946145
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.