PHP is not execute the query from mysql in Linux


 
Thread Tools Search this Thread
Operating Systems Linux PHP is not execute the query from mysql in Linux
# 8  
Old 09-02-2011
There is no mysql data on that page

How you are saying that, no mysql data ?

Check your script, it will have the select statement to retrieve the data from mysql DB
# 9  
Old 09-02-2011
Yes, The same scripts show some data in solaris server. I have not changed any think.

---------- Post updated at 01:20 AM ---------- Previous update was at 01:17 AM ----------

Please help in this code.

<?php
$con = mysql_connect("localhost","tst","start123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("tst", $con);

$result = mysql_query("select Server,Service from MDServersToServices limit 5");

while($row = mysql_fetch_array($result))
{
echo $row['FirstName'] . " " . $row['LastName'];
echo "<br />";
}

mysql_close($con);
?>

Note: I have to print on browser. Please help on this
# 10  
Old 09-02-2011
Is it webpage code ? and you are trying to run on command line ?

If it is coded for the webpage, it will get some information from the user and the form contains the data and it will be passed to your php code. Based upon the passed values, it will retrieve or do some operation on db
# 11  
Old 09-02-2011
this is a webpage code. what kind of the operation on db ?

---------- Post updated at 01:32 AM ---------- Previous update was at 01:24 AM ----------

Hi, I have used the below code

<?php
$con = mysql_connect("localhost","tst","start123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("tst", $con);

$result = mysql_query("select Server,Service from MDServersToServices limit 5");

echo "<table border='1'>
<tr>
<th>Server</th>
<th>Service</th>
</tr>";

while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['Server'] . "</td>";
echo "<td>" . $row['Service'] . "</td>";
echo "</tr>";
}
echo "</table>";

mysql_close($con);
?>

Output is only
Server service

Note: There is no data retrieved from that table.

I hope that you can clear now
# 12  
Old 09-02-2011
put your files under the WWW folder or htdocs in the apache installation folder.

And invoke the file in browser. (using server-nameSmilieort...blah..blah.. )

if you didnt get any output, then worth to check the apache logs

---------- Post updated at 12:05 PM ---------- Previous update was at 12:03 PM ----------

Code:
mysql_select_db("tst", $con) or die( "Unable to select database");

# 13  
Old 09-02-2011
I have checked the above code. But I did not get any error msg .

---------- Post updated at 01:47 AM ---------- Previous update was at 01:39 AM ----------

Can you please tell how to check on apache log .

Please help on this
# 14  
Old 09-02-2011
Try to print the rows

Code:
 
$num=mysql_numrows($result);
echo $num;

Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to write MySQL query in text file and run in Linux?

I would like to call a .sql file from a .sh file in linux. The .sql file will contain queries to MySQL database. I am able to call the .sql file by running .sh file in linux, but the sql query is not working. Below is my syntax. The select statement is throwing below error. ./sample.sql: line... (1 Reply)
Discussion started by: qytan
1 Replies

2. Programming

Need help in mysql query

Hi All, i have a table in mysql with the following data Table name Test Assettype Serial_No Status location Mouse 123456 In Stock chennai Mouse 98765 Allocated chennai Keyboard ... (2 Replies)
Discussion started by: venkitesh
2 Replies

3. Programming

mysql query help

Hello i have created mysql query to compare to values and get difference in percentage as following: SELECT file_name, 100 - ((100 * (SELECT file_count FROM xipi_files z WHERE x.file_group = z.file_group AND x.file_name = z.file_name AND z.insert_date = CURDATE( ) - INTERVAL 1 DAY)) /... (1 Reply)
Discussion started by: mogabr
1 Replies

4. Shell Programming and Scripting

Shell Script to execute Oracle query taking input from a file to form query

Hi, I need to query Oracle database for 100 users. I have these 100 users in a file. I need a shell script which would read this User file (one user at a time) & query database. For instance: USER CITY --------- ---------- A CITY_A B CITY_B C ... (2 Replies)
Discussion started by: DevendraG
2 Replies

5. Web Development

about php.ini and mysql linux

I can't use mysql .How should i config the file of php.ini . the message: Fatal error: Call to undefined function mysql_errno() in /var/www/html/inc/dv_clssql.php on line 129 how should i do? please help me (2 Replies)
Discussion started by: fang_xiaoan
2 Replies

6. Virtualization and Cloud Computing

Problems with PHP query to MySQL database

Hello all, I completed a website (it was code by php) and putted it to AWS, I install fedora instance in EC2 with the base is php and mysql. I putted all files of my website to folder /home/webuser/helloworld/htddocs and my database (mysql) to folder /var/lib/mysql/test ("test" is my... (2 Replies)
Discussion started by: hero132
2 Replies

7. Programming

How to query one to many mysql

Hi there, I have a hierarchical database that include 4 tables. Table A is the parent of B, B is Parent of C, C is parent of D. If I want to query everything in D that is associated with A.name, how do I do that? Thanks! YanYan (0 Replies)
Discussion started by: pinkgladiator
0 Replies

8. UNIX for Dummies Questions & Answers

Linux/Unix/PHP/MySQL & servers?

Hello everyone! First I would like to say that I am very glad that I found this forum, and by some of the posts I have viewed, I see that I can learn a lot from you all! Secondly, I know next to nothing about Linux/Unix (gotta learn sometime right?) and need some assistance. I am a... (5 Replies)
Discussion started by: kolton
5 Replies
Login or Register to Ask a Question