hi ich hab hier meinen ersten PHP / SQL Code geschrieben und irgendwo muss wohl ein fehler sein. Also genauer, ich moechte peer Auswahlbox (what) festlegen in welche Tabelle geschrieben werden soll. hier nun der code.
danke schonma fuer eure hilfe.
mfg just.
Code:
<html> <head> <title>Create Newcomer</title> </head> <body> <?php require ("../config.php"); include "../head.inc.php"; mysql_connect ("$dbhost", "$dbuser", "$dbpass"); mysql_select_db (inven); mysql_query ("INSERT INTO ".$_GET["what"]." ( hostname, manufactor, typ, cpu, ram, os, purchase, assetno, stag, mac, ip, switchp, patchp, asso, wtime, wstart, wend, misc ) VALUES ( '$_GET[hostname]', '$_GET[manufactor]', '$_GET[typ]', '$_GET[cpu]', '$_GET[ram]', '$_GET[os]', '$_GET[purchase]', '$_GET[assetno]', '$_GET[stag]', '$_GET[mac]', '$_GET[ip]', '$_GET[switchp]', '$_GET[patchp]', '$_GET[asso]', '$_GET[wtime]', '$_GET[wstart]', '$_GET[wend]', '$_GET[misc]' ) "); $result=mysql_query($query,$db); echo "Entry $_GET[hostname] created"; echo "$_GET[what]"; ?> </body> </html>
mfg just.
Kommentar