MySQL Forums
Forum List  »  MySQL Query Browser

Problem with OES/Linux invironment using Mysql Query Browser
Posted by: diela mohd
Date: July 03, 2005 08:21PM

hi..

i developed a system using php language, mysql query browser for database, apache2 for server. This system has problem when i run it on OES (Open Enterprise Server)-linux environment, but when the system running on Window, it success. The problem is:

This coding, it's cannot view the data from table tarikh when i migrate the system on linux.
<?
$q="SELECT * FROM tarikh where date='$date'";
$result=mysql_query($q,$db);
?>
<?
$bil = 1;
while ($c=mysql_fetch_array($result))
{
?>
<font color="#0000FF" size="2" face="Courier New, Courier, mono"><?php echo $c['name']?></font>
<font color="#0000FF" size="2" face="Courier New, Courier, mono">
<a href="remark.php?ic=<? echo $c['ic'];?>"><?php echo $c['ic']?></a>
</font>

<?php
$bil++;
}
mysql_free_result ($result);
?>


How to solve the problem...

Options: ReplyQuote


Subject
Written By
Posted
Problem with OES/Linux invironment using Mysql Query Browser
July 03, 2005 08:21PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.