hanan
hanan

Reputation: 1

how i could retrieve data from mysql using php code

I'm still a beginner in the PHP so I need your help ... I have a small database Containing

I want to retrieve the content data using the id . so I need the php code which could help me

Upvotes: 0

Views: 672

Answers (3)

Muhammad Yasir
Muhammad Yasir

Reputation: 646

<?php

mysql_connect("localhost", "dbuser", "dbpass");
mysql_select_db("dbname");
$id = 5;
$q = mysql_query("SELECT * FROM table_name WHERE id = {$id}");
$r = mysql_fetch_object($q);

echo $r->links;

?>

Supposing you need to get only one row from table.

Upvotes: 2

Related Questions