vote up -2 vote down star

How do you display info like an email, lastname and so on from a database using php and mysql.

A code example would be nice.

flag
5  
that's right, a code example would be nice – SilentGhost Sep 29 at 15:26
2  
While you're at it, I have some laundry that won't waste itself... – OMG Ponies Sep 29 at 15:57

4 Answers

vote up 3 vote down

Assuming you have the mysql database extension available, you should start by looking the documentation for PHP mysql commands. There are a lot of code examples in there to get you started.

link|flag
vote up 1 vote down

have you even bothered to read the documentation? there’s a fairly comprehensive example (with code and explanations)

link|flag
vote up 1 vote down

An example directly from the php.net website :

<?php

$conn = mysql_connect("localhost", "mysql_user", "mysql_password");

if (!$conn) {
    echo "Unable to connect to DB: " . mysql_error();
    exit;
}

if (!mysql_select_db("mydbname")) {
    echo "Unable to select mydbname: " . mysql_error();
    exit;
}

$sql = "SELECT id as userid, fullname, userstatus 
        FROM   sometable
        WHERE  userstatus = 1";

$result = mysql_query($sql);

if (!$result) {
    echo "Could not successfully run query ($sql) from DB: " . mysql_error();
    exit;
}

if (mysql_num_rows($result) == 0) {
    echo "No rows found, nothing to print so am exiting";
    exit;
}

// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
//       then create $userid, $fullname, and $userstatus
while ($row = mysql_fetch_assoc($result)) {
    echo htmlspecialchars($row["userid"]);
    echo htmlspecialchars($row["fullname"]);
    echo htmlspecialchars($row["userstatus"]);
}

mysql_free_result($result);

?>
link|flag
Cross-site scripting. htmlspecialchars. – bobince Sep 29 at 15:37
vote up 0 vote down
$result = mysql_query("SELECT email, lastname, andsoon FROM mytable");
while ($row = mysql_fetch_array($result)) {
    echo "<p>".htmlspecialchars($row["email"])."<br />".htmlspecialchars($row["lastname"])."<br />".htmlspecialchars($row["andsoon"])."</p>"
}
link|flag
Cross-site scripting. htmlspecialchars. – bobince Sep 29 at 15:36
@bobince - Fair point, edited. – Dominic Rodger Sep 29 at 15:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.