View Single Post
  #8  
Old 01-29-2008, 05:36 AM
Mythotical Mythotical is offline
 
Join Date: Jun 2004
Location: Booneville, AR, USA
Posts: 1,428
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

LOL, I should have thought to do that, thats what happens when you have alot on your mind and too tired to think.

--------------- Added [DATE]1201592290[/DATE] at [TIME]1201592290[/TIME] ---------------

Dismounted: This is what print_r outputs:
Code:
Array ( )
--------------- Added [DATE]1201592548[/DATE] at [TIME]1201592548[/TIME] ---------------

BTW, here is the code for my admin page that has the browse file field.

PHP Code:
// Add Sponsor
if ($_REQUEST['do'] == 'add')
{
print_form_header("sponsors""saved""false""true""add_entry""90%""""true""post");
print_table_header("Add Sponsor");
print_input_row("Title""title"$vbulletin->GPC['title'], $htmlise true$size 35$maxlength 100$direction ''$inputclass false);
print_input_row("URL""url"$vbulletin->GPC['url'], $htmlise true$size 35$maxlength 100$direction ''$inputclass false);
print_input_row("Image""image"$vbulletin->GPC['image'], $htmlise true$size 35$maxlength 100$direction ''$inputclass false);
print_input_row("Description""description"$vbulletin->GPC['description'], $htmlise true$size 35$maxlength 100$direction ''$inputclass false);
print_radio_row('Suspended''inactive', array(=> 'No'=> 'Yes'), $vbulletin->GPC['inactive']);
echo 
'<tr><td class="alt2">Image File</td><td class="alt2"><input type="file" name="img_file" /></td></tr>';
print_submit_row("Add Sponsor");
print_table_footer();  
}

if(
$_REQUEST['do'] == 'saved')
    {    
    
$upload = new vB_Upload_Image($vbulletin);
    
$upload->image =& vB_Image::fetch_library($vbulletin);
    
$upload->path './'.$options['sponsor_imgpath'];
//    if (!($upload->process_upload($vbulletin->GPC['img_file']))){
//        eval(standard_error(fetch_error('there_were_errors_encountered_with_your_upload_x', $upload->fetch_error())));
//    } 
  
        
$sql "INSERT INTO  `" TABLE_PREFIX "sponsors`
                (`title` , `url` , `image` , `description`, `inactive`, `img_file`) 
                VALUES (
                '" 
$db->escape_string($vbulletin->GPC['title']) . "',
                '" 
$db->escape_string($vbulletin->GPC['url']) . "',
                '" 
$db->escape_string($vbulletin->GPC['image']) . "',
                '" 
$db->escape_string($vbulletin->GPC['description']) . "',
                '" 
$db->escape_string($vbulletin->GPC['inactive']) . "',
                '" 
$vbulletin->GPC['img_file'] . "'
                        )"
;
print_r($vbulletin->GPC['img_file']);
$vbulletin->db->query_write($sql);
print_cp_message('Sponsor Added.''sponsors.php'5);
    } 
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01358 seconds
  • Memory Usage 1,822KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete