| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/webroot/news/tmp/install_53214838987c8/site/assets/ |
Upload File : |
function update()
{
var text = $('#d_text').val();
var image = $('#d_image').val();
var d_text_color = $('#d_text_color').val();
var d_text_fontfamily = $('#d_text_fontfamily').val();
var d_text_fontsize = $('#d_text_fontsize').val();
if( text.length > 0){
$("#text").append(text);
$("#text").css("color", d_text_color);
$("#text").css("font-family", d_text_fontfamily);
$("#text").css("font-size", d_text_fontsize);
}
if( image.length > 0){
$("#image").append('<img width="130" class="image" src="components/com_timage/assets/images/uploads/' + image + '" />');
}
$('#update').hide();
$('#reset').show();
}
function getValue(form) {
var Item = form.menu1.selectedIndex;
var Result = form.menu1.options[Item].text;
document.write("index is "+Item); //index
document.write("result is "+Result); //actual contents
location.href="admin.php?Result=" + Result; //recalls page.... is this equivalent to a GET?
document.write("<?php getdb(); ?>"); // should be jumping to php function here where i want to echo Result to make sure
}
function reset()
{
top.location = $(location).attr('href');
}