hallo,
bastel schon std lang hier rum und bekomme es nicht hin ich habe ein formular mit mehren input und textfelder und möchte diese nun beim absenden in die db eintragen.
meine uploadify.php
und hier da script :
er tragt das upgeloadete file in die datenbank ein aber alle felder die value='' also leer sind da trägt er nix ein .
wie bekomme ich das nun hin das er dort nach eingabe auch was einträgt ?
bastel schon std lang hier rum und bekomme es nicht hin ich habe ein formular mit mehren input und textfelder und möchte diese nun beim absenden in die db eintragen.
meine uploadify.php
PHP:
require_once("../../class2.php");
// JQuery File Upload Plugin v1.4.1 by RonnieSan - (C)2009 Ronnie Garcia
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $_GET['folder'] . '/';
$targetFile = str_replace('//','/',$targetPath) . $_FILES['Filedata']['name'];
// Uncomment the following line if you want to make the directory if it doesn't exist
// mkdir(str_replace('//','/',$targetPath), 0755, true);
move_uploaded_file($tempFile,$targetFile);
}
if(isset($targetFile)){
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')
$localeCode = 'ge';
else
$localeCode = 'de_DE';
setlocale(LC_TIME,$localeCode);
$datum =strftime("%A, %d. %B %Y");
$beschreibung = ( @get_magic_quotes_gpc() ) ? $_POST['beschreibung'] : @addslashes($_POST['beschreibung']);
$musik_user_id = ( @get_magic_quotes_gpc() ) ? $_POST['musik_user_id'] : @addslashes($_POST['musik_user_id']);
$musik_user = ( @get_magic_quotes_gpc() ) ? $_POST['musik_user'] : @addslashes($_POST['musik_user']);
$genre = ( @get_magic_quotes_gpc() ) ? $_POST['genre'] : @addslashes($_POST['genre']);
$musik_type = ( @get_magic_quotes_gpc() ) ? $_POST['musik_type'] : @addslashes($_POST['musik_type']);
$cat_id = ( @get_magic_quotes_gpc() ) ? $_POST['cat_id'] : @addslashes($_POST['cat_id']);
$alben_image = ( @get_magic_quotes_gpc() ) ? $_POST['alben_image'] : @addslashes($_POST['alben_image']);
//$datei = ( @get_magic_quotes_gpc() ) ? $_POST['datei'] : @addslashes($_POST['datei']);
$mp3 = ( @get_magic_quotes_gpc() ) ? $_POST['mp3'] : @addslashes($_POST['mp3']);
$musik_tags = ( @get_magic_quotes_gpc() ) ? $_POST['musik_tags'] : @addslashes($_POST['musik_tags']);
$musik_titel = ( @get_magic_quotes_gpc() ) ? $_POST['musik_titel'] : @addslashes($_POST['musik_titel']);
$copyright = ( @get_magic_quotes_gpc() ) ? $_POST['copyright'] : @addslashes($_POST['copyright']);
$time = ( @get_magic_quotes_gpc() ) ? $_POST['time'] : @addslashes($_POST['time']);
/* DB Insert */
$mysql = new db();
$mysql->db_Connect($mySQLserver, $mySQLuser, $mySQLpassword, $mySQLdefaultdb);
$rtn = $mysql->db_Insert("mp3_musik_config", " '',
'$beschreibung','$musik_user_id','$musik_user','$genre','$musik_type','$cat_id','$alben_image','$orginalname','$musik_tags','$musik_titel','$copyright','$datum', '1'");
} else { // Required to trigger onComplete function on Mac OSX
echo '1';
}
echo '1';
und hier da script :
PHP:
$(document).ready(function() {
$("#file_upload").uploadify({
"uploader" : "uploadify/uploadify.swf",
"script" : "uploadify.php",
"cancelImg" : "uploadify/cancel.png",
"folder" : "uploads/music",
"buttonImg" : "system/upload.png",
"height" : 72,
"width" : 72,
"multi" : false,
"method" : "POST",
"fileExt" : "*.mp3;*.rar;*.zip",
"fileDesc" : "Web Upload Files (.mp3)",
"auto" : false,
"scriptData": {
"beschreibung": $(".text").val(),
"musik_user_id": $("#musik_user_id").val(),
"musik_user": $("#musik_user").val(),
"genre": $("#genre").val(),
"musik_type": $("#musik_type").val(),
"alben_image": $("#alben_image").val(),
"musik_tags": $("#musik_tags").val(),
"musik_titel": $("#musik_titel").val(),
"copyright": $(".copyright").val()
},
onComplete: function (evt, queueID, fileObj, response, data) {
alert("Successfully uploaded: "+response);
}
});
er tragt das upgeloadete file in die datenbank ein aber alle felder die value='' also leer sind da trägt er nix ein .
wie bekomme ich das nun hin das er dort nach eingabe auch was einträgt ?