ab folgendes Problem
Ich hab übergebe einem Fenster mit folgenden Code eine Variabel
PHP-Code:
<?php
error_reporting(E_ALL);
include 'config.php';
// Konfigurationsdatei laden
@mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) OR die(mysql_error());
mysql_select_db(MYSQL_DATABASE) OR die(mysql_error());
$wh_id = $_GET[info_id];
$sql = "SELECT con_id,
con_datum,
con_name,
con_ort,
con_location,
con_bands,
con_infos,
con_beginn,
con_vvk,
con_vvk_wo,
con_ak,
con_url,
con_email
FROM
concerts_general
WHERE
con_id = ".$wh_id.";";
$result = mysql_query($sql) OR die(mysql_error());
?>
ich krieg folgende Fehlermeldung zrück:
Zitat:
|
Notice: Use of undefined constant info_id - assumed 'info_id' in /kunden/100142_8361/webseiten/sites/austrian_concerts/info.php on line 19
|
Bitte helft mir