Jump to content

NEED DATABASE HELP


legohead6

Recommended Posts

ok so far heres my script

<?php
$link = mysql_connect('localhost', 'user', 'pass);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully<br>';
?>


know i want it to display information from the database "test" on table "people" please help me with the code!
Link to comment
Share on other sites

Hej, try

<?php
$link = mysql_connect('localhost', 'user', 'pass);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully<br>';

mysql_select_db("test",$link");
$result = mysql_query(SELECT * FROM people",$link);
while($row = mysql_fetch_array($result,MYSQL_NUM))
{
foreach($row as $val)
{
echo'<p>$val</p>';
}
}
?>

Link to comment
Share on other sites

Please be more specific of what you need help with as it relates to databases. For basic connect, select, and fetch see tutorials and code example at the FAQ page link bellow. Look for my post there related to MySQL data retrieval.

[a href=\"http://www.phpfreaks.com/forums/index.php?showtopic=31047\" target=\"_blank\"]http://www.phpfreaks.com/forums/index.php?showtopic=31047[/a]
Link to comment
Share on other sites

[!--quoteo(post=359883:date=Mar 30 2006, 01:22 PM:name=legohead6)--][div class=\'quotetop\']QUOTE(legohead6 @ Mar 30 2006, 01:22 PM) [snapback]359883[/snapback][/div][div class=\'quotemain\'][!--quotec--]
ok so far heres my script

<?php
$link = mysql_connect('localhost', 'user', 'pass);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully<br>';
?>
know i want it to display information from the database "test" on table "people" please help me with the code!
[/quote]


[code]<?php
{
    //attempt to connect to the database server
    //if the attempt was successful
    if (@mysql_connect('localhost', 'user', 'pass))) {
    
        //attempt to select the mycms databse
        //if the attempt was successful
        if (@mysql_select_db("test")) {
    
        //return true
        return TRUE;
        
        //Or if the selection was unsuccessful
        } else {
        
            //display error message
            echo "<p>Unable to select the database .</p>";
            
            //Return False
            return FALSE;
        }
        
    } else {
    
        //Display the error message
        echo "<p>Unable to connect to the database server</p>";
    
        //return false
        return FALSE;
    }
}

$query = "SELECT * FROM people"; //put some other criteria in to refine your query
$result = mysql_query ($query);

// check to see how many rows we have. if we have 0 rows then nothing has returned
if(mysql_num_rows($result) < 1) {

    echo('<p>the is no data in the table!</p>');

} else {
        
         //run through the results of the query and put the result into an array called $row
    while ($row = mysql_fetch_assoc($result)) {

?>//stop the while loop and display the records

<p>here are the details of the field name<?= $row['fieldName'] ?></p> <!--change field name and fieldName for the correct names of the table fields. -->

<?php
    
} //end the while loop

?> [/code]

that should get you started
Link to comment
Share on other sites

[!--quoteo(post=359886:date=Mar 29 2006, 10:49 PM:name=warewolfe)--][div class=\'quotetop\']QUOTE(warewolfe @ Mar 29 2006, 10:49 PM) [snapback]359886[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Hej, try

<?php
$link = mysql_connect('localhost', 'user', 'pass);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully<br>';

mysql_select_db("test",$link");
$result = mysql_query(SELECT * FROM people",$link);
while($row = mysql_fetch_array($result,MYSQL_NUM))
{
foreach($row as $val)
{
echo'<p>$val</p>';
}
}
?>
[/quote]

parse errors came up.....i dont really know the script so its hard for me to try to correct....

[!--quoteo(post=359890:date=Mar 29 2006, 11:00 PM:name=sambib)--][div class=\'quotetop\']QUOTE(sambib @ Mar 29 2006, 11:00 PM) [snapback]359890[/snapback][/div][div class=\'quotemain\'][!--quotec--]
[code]<?php
{
    //attempt to connect to the database server
    //if the attempt was successful
    if (@mysql_connect('localhost', 'user', 'pass))) {
    
        //attempt to select the mycms databse
        //if the attempt was successful
        if (@mysql_select_db("test")) {
    
        //return true
        return TRUE;
        
        //Or if the selection was unsuccessful
        } else {
        
            //display error message
            echo "<p>Unable to select the database .</p>";
            
            //Return False
            return FALSE;
        }
        
    } else {
    
        //Display the error message
        echo "<p>Unable to connect to the database server</p>";
    
        //return false
        return FALSE;
    }
}

$query = "SELECT * FROM people"; //put some other criteria in to refine your query
$result = mysql_query ($query);

// check to see how many rows we have. if we have 0 rows then nothing has returned
if(mysql_num_rows($result) < 1) {

    echo('<p>the is no data in the table!</p>');

} else {
        
         //run through the results of the query and put the result into an array called $row
    while ($row = mysql_fetch_assoc($result)) {

?>//stop the while loop and display the records

<p>here are the details of the field name<?= $row['fieldName'] ?></p> <!--change field name and fieldName for the correct names of the table fields. -->

<?php
    
} //end the while loop

?> [/code]

that should get you started
[/quote]

wow....umm this came up

Parse error: parse error, unexpected T_STRING in /var/www/html/PHP/data.php on line 42

[!--quoteo(post=359887:date=Mar 29 2006, 10:49 PM:name=toplay)--][div class=\'quotetop\']QUOTE(toplay @ Mar 29 2006, 10:49 PM) [snapback]359887[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Please be more specific of what you need help with as it relates to databases. For basic connect, select, and fetch see tutorials and code example at the FAQ page link bellow. Look for my post there related to MySQL data retrieval.

[a href=\"http://www.phpfreaks.com/forums/index.php?showtopic=31047\" target=\"_blank\"]http://www.phpfreaks.com/forums/index.php?showtopic=31047[/a]
[/quote]

Thanks i found the stuff...but how do i set up a query..(im new to databases and php)
Link to comment
Share on other sites

[code]<?php

$link = mysql_connect('localhost', 'user', 'pass') or die(mysql_error());
mysql_select_db('test') or die(mysql_error());

$query = mysql_query("SELECT * FROM people") or die(mysql_error());

if (mysql_num_rows($query) > 0) {
  while($row=mysql_fetch_assoc($query)) {
    print_r($row);
    echo "\r\n<br /><br />\r\n";
  }
}

mysql_close($link);

?>[/code]
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.