Zobacz temat
[PHP] Wyświetlanie $_GET['id'] przy mysql_result
|
|
LeviPlayGames |
Dodany dnia 26.02.2016 20:51:52
|
Przedszkolak Postów: 1 Data rejestracji: 26.02.2016 20:43 |
Hej! Mam problem dot. wyświetlania obrazka: <html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl"> <head> <meta http-equiv="Content-Type" content="text/html; UTF-8" /> <link rel="Shortcut icon" href="favicon.ico" /> </head> <body> <?php include "connect.php"; error_reporting(E_ALL); if(isset($_GET['id']) && is_numeric($_GET['id'])) { $link = mysql_connect($servername, $username, $password) or die("Could not connect: " . mysql_error()); mysql_select_db($db) or die(mysql_error()); $sql2 = "SELECT imie FROM bans WHERE id=" .$_GET['id'] . ";"; $sql3 = "SELECT data FROM bans WHERE id=" .$_GET['id'] . ";"; $sql4 = "SELECT autor FROM bans WHERE id=" .$_GET['id'] . ";"; $screen = "http://ppppp.tk/xx/admin/show.php?id=" .$_GET['id'] . ";"; $result2 = mysql_query("$sql2") or die("Invalid query: " . mysql_error()); $result3 = mysql_query("$sql3") or die("Invalid query: " . mysql_error()); $result4 = mysql_query("$sql4") or die("Invalid query: " . mysql_error()); $screenresult = mysql_query("$screen") or die("Invalid query: " . mysql_error()); header("Content-type: text"); echo mysql_result($result2, 0); echo mysql_result($result3, 0); echo mysql_result($result4, 0); echo mysql_result($screenresult, 0); mysql_close($link); } else { echo 'Nieprawidłowe ID'; } ?> </body> </html> I wyskakuje mi następujący error: Invalid query: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'http://ppppp.tk/xx/admin/show.php?id=4' at line 1 Gdzie http://ppppp.tk/x...w.php?id=4 to link do obrazka. Reszta pokazuje informacje związane z datą itp. Jak mogę to naprawić? PW od moderatora:
|
|
|
Wścibski Gość |
Dodany dnia 25.11.2024 04:41:30
|
Pan Kontekstualny Postów: n^x Data rejestracji: Zawsze |
|
IP: localhost |
Przejdź do forum: |