Hi! This is my problem:
I have this index.php:
The problem is that this script only print "Hola Mundo". And I want to print "Hola Mundo" and the query...PHP Code:<html>
<body>
<?php
$linkp>
$link = mysql_connect("IP","db","password");
mysql_select_db("DB",$link);
echo "Hola Mundo ";
echo mysql_query("SELECT * FROM 'servers'",$link)."<br>";
?>
<html>
<body>
I hope you can help me with this one!
Thanks!!




Reply With Quote