Nejste přihlášeni
Stránky 1
Zdravím, potřeboval bych pomoct s touhle chybou AF: /etc/httpd/perl/Apache2/reklama/0.65 uri:/display.php -->. Fakt už si nevím rady. Scripty mají dělat spojení hry s MySQL a vytvořit highscore.
Scripty:
addscore.php
<?php
$db = mysql_connect('localhost', 'grow', 'password') or die('Could not connect: ' . mysql_error());
mysql_select_db('openfirescores') or die('Could not select database');
// Strings must be escaped to prevent SQL injection attack.
$name = mysql_real_escape_string($_GET['name'], $db);
$score = mysql_real_escape_string($_GET['score'], $db);
$hash = $_GET['hash'];
$secretKey="Highscore"; # Change this value to match the value stored in the client javascript below
$real_hash = md5($name . $score . $secretKey);
if($real_hash == $hash) {
// Send variables for the MySQL database class.
$query = "insert into scores values (NULL, '$name', '$score');";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
}
?>
display.php
<?php
// Send variables for the MySQL database class.
$database = mysql_connect('localhost', 'grow', 'password') or die('Could not connect: ' . mysql_error());
mysql_select_db('openfirescores') or die('Could not select database');
$query = "SELECT * FROM `scores` ORDER by `score` DESC LIMIT 5";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
$num_results = mysql_num_rows($result);
for($i = 0; $i < $num_results; $i++)
{
$row = mysql_fetch_array($result);
echo $row['name'] . "\t" . $row['score'] . "\n";
}
?>
Vše sem dělal podle návodu který je zde http://www.unifycommunity.com/wiki/inde ... Highscores
Prosím pomozte mi.
Offline
to tam čteš sam plete se ti tam někam reklama
W3C validator | Performance tools | Stavové kódy HTTP | Fiddle | Codepen | Ideone | XAMPP
Offline
JF je to tam napsané v té chybě. (display.php tam je) A Destroyer no to vím taky, ale jak to spravit?
Offline
JF je to tam napsané v té chybě. (display.php tam je) A Destroyer no to vím taky, ale jak to spravit?
ako pozerám tak pozerám ale v tomto nevidím napísaný názov tvojej domény
<?php
// Send variables for the MySQL database class.
$database = mysql_connect('localhost', 'grow', 'password') or die('Could not connect: ' . mysql_error());
mysql_select_db('openfirescores') or die('Could not select database');
$query = "SELECT * FROM `scores` ORDER by `score` DESC LIMIT 5";
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
$num_results = mysql_num_rows($result);
for($i = 0; $i < $num_results; $i++)
{
$row = mysql_fetch_array($result);
echo $row['name'] . "\t" . $row['score'] . "\n";
}
?>
no osobne jedine zamaskovať reklamu na danom výstupe aby tam nebol zbytočný text, prípadne zmeniť hlavičku posielanému súboru na textovu miesto html
Offline
<!-- w --><a class="postlink" href="http://www.low.tode.cz">www.low.tode.cz</a><!-- w -->
Zamaskovat reklamu? A to prosím jak? Jsem ohledně MySQL a tvorbě webu nováček.
Offline
Offline
Nemohl by si mi tady prosím tě dát odkaz? Já to hledal ale nenašel
Offline
<!-- l --><a class="postlink-local" href="http://podpora.endora.cz/search.php?st=0&sk=t&sd=d&sr=posts&keywords=text+plain">search.php?st=0&sk=t&sd=d&sr=posts&keywords=text+plain</a><!-- l -->
to myslis vážně?
W3C validator | Performance tools | Stavové kódy HTTP | Fiddle | Codepen | Ideone | XAMPP
Offline
Stránky 1