Current location: Hot Scripts Forums » Programming Languages » PHP » include a dynamic url?


include a dynamic url?

Reply
  #1 (permalink)  
Old 09-21-05, 04:10 PM
ToeBee ToeBee is offline
Newbie Coder
 
Join Date: Jul 2005
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
include a dynamic url?

I wanted to use a include('misc.php?action=new_files') but I know that can't be done. I thought I saw a thread on hear one time where they used the print or echo function, but I can't seem to find it.

I have a very limited knowledge of PHP so please bare with me. There is probably some way to extract what I want from the misc.php but can't figure it out. Here is the php coding for misc.php

PHP Code:

<?php 


include_once('lib.inc.php');
include_once(
$_ENGINE['eng_dir']."admin/enginelib/function.".ENG_TYPE.".php");

if(
$_REQUEST['action']) $action $_REQUEST['action'];

if (
$action == "login") {
    
$tpl->loadFile('main''login.html'); 
    
$tpl->register('breadcrumb'buildBreadCrumb(array($lang['php_overall_home'] => $config['mainurl'], $lang['title_engine'] => ('index.php'), $lang['login_login'] => '')));
    
$tpl->register('title''Login');  
    
    
$tpl->register(array('login_login' => $lang['login_login'],
                        
'login_login2' => $lang['login_login2'],
                        
'login_use_your_username_password' => sprintf($lang['login_use_your_username_password'],definedBoardUrls("addmember")),
                        
'login_username' => $lang['login_username'],
                        
'login_password' => $lang['login_password'],
                        
'login_click_here_to_remember' => sprintf($lang['login_click_here_to_remember'],definedBoardUrls("remember")),
                        
'login_login_btn' => $lang['login_login_btn'],
                        
'login_reset_btn' => $lang['login_reset_btn'])); 
                         
    if(
$auth->user['userid'] != 2) {
        
rideSite(("index.php"), $lang['misc_1']);
    } else {
        
$tpl->register('query'showQueries($develope));         
        
$tpl->register('header'$tpl->pget('header'));
        
        
$tpl->register('footer'$tpl->pget('footer'));
        
$tpl->pprint('main');           
    }
    exit();
}

if (
$action == "userlogin") {
    
$info $lang['misc_2'];
    
showLoginScreen(""$info"&nbsp;", ("index.php"));
    exit();
}

if (
$action == "invalid_login") {
    
rideSite(("misc.php?action=login"), $lang['misc_3']);
    exit();
}

if (
$action == "logout") {
    
$auth->userLogout();
    
rideSite(("index.php"), $lang['misc_4']);
    exit();
}

if(
$action == "perm_denied") {
    
$ride_url = ('index.php');
    
rideSite($ride_url$lang['misc_5']);
    exit();
}

if(
$action == 'new_files') {   
    
$tpl->loadFile('main''misc_toplist_new_files.html'); 
    
$tpl->register('title'sprintf($lang['misc_last_files'],$config['newlist_q']));
    
$tpl->register('breadcrumb'buildBreadCrumb(array($lang['php_overall_home'] => $config['mainurl'], $lang['title_engine'] => ('index.php'), $lang['misc_stats']=>('misc.php?action=toplist'), sprintf($lang['misc_last_files'],$config['newlist_q']) => '')));            
    
$tpl->register(array('misc_more_stats' => $lang['misc_more_stats'],
                        
'misc_top_downloads_total' => $lang['misc_top_downloads_total'],
                        
'misc_top_downloads_by_rating' => $lang['misc_top_downloads_by_rating'],
                        
'misc_top_downloads_by_votes' => $lang['misc_top_downloads_by_votes'],
                        
'misc_new_files' => sprintf($lang['misc_new_files'],$config['newlist_q']),
                        
'misc_last_files' => sprintf($lang['misc_last_files'],$config['newlist_q']),
                        
'misc_new_files_since_your_last_visit' => $lang['misc_new_files_since_your_last_visit']));        
            
    
$result2 $db_sql->sql_query("SELECT $dl_table.*, $cat_table.titel FROM $dl_table 
                                    LEFT JOIN 
$cat_table ON ($cat_table.catid = $dl_table.catid)
                                    WHERE 
$dl_table.status!='3' ORDER BY $dl_table.dl_date DESC LIMIT 0,$config[newlist_q]");
    if(
$db_sql->num_rows($result2) >= 1) {
        
$no 1;
        
$i 0;
        
$newest_file_loop = array();
        while(
$dl $db_sql->fetch_array($result2)) {
            
$dl stripslashes_array($dl);
            
$upl_date aseDate($config['longdate'],$dl['dl_date']);        
            
$rowcolor postCss($no);    
            
$newest_file_loop[] = array('no' => $no,
                                    
'new_file_url' => ('comment.php?dlid='.$dl['dlid']),
                                    
'new_file_filename' => $dl['dltitle'],
                                    
'postcolor' => postCss($no),
                                    
'misc_upload_dtd' => sprintf($lang['misc_upload_dtd'],aseDate($config['shortdate'],$dl['dl_date'])),
                                    
'misc_top_category' => sprintf($lang['misc_top_category'],('index.php?subcat='.$dl['catid']),$dl['titel']),                                    
                                    
'misc_new_file_hits' => sprintf($lang['misc_new_file_hits'],$dl['dlhits']));
            
$no++;
            
$i++;
        }
        
$tpl->parseLoop('main''newest_file_loop'); 
        
$parse_top_file_list true;
        
$parse_no_top_file_list false;
    } else {
        
$parse_top_file_list false;
        
$parse_no_top_file_list true;
    }
    
$tpl->parseIf('main''parse_top_file_list');   
    
$tpl->parseIf('main''parse_no_top_file_list');        
    
    if(
$config['newlist']) $parse_new_file_list true;
    if(
$sess->getSessVar("engine_last_visit")) $parse_personally_new_files true;
    
$tpl->parseIf('main''parse_personally_new_files');   
    
$tpl->parseIf('main''parse_new_file_list');    
                         
    
$tpl->register('query'showQueries($develope));         
    
$tpl->register('header'$tpl->pget('header'));
    
    
$tpl->register('footer'$tpl->pget('footer'));
    
$tpl->pprint('main');      
    
    exit();
}  

if(
$action == "toplist") {
    if(!
$auth->user['canseetopstatsfiles']) {
        
rideSite(('index.php'), $lang['misc_2']);
        exit();
    }
    
    
$tpl->loadFile('main''misc_toplist.html'); 
    
$tpl->register('title'$lang['misc_top_lists']);
    
$tpl->register('breadcrumb'buildBreadCrumb(array($lang['php_overall_home'] => $config['mainurl'], $lang['title_engine'] => ('index.php'), $lang['misc_stats']=>('misc.php?action=toplist'), $lang['misc_top_lists'] => '')));            
    
$tpl->register(array('misc_more_stats' => $lang['misc_more_stats'],
                        
'misc_top_downloads_total' => $lang['misc_top_downloads_total'],
                        
'misc_top_downloads_by_rating' => $lang['misc_top_downloads_by_rating'],
                        
'misc_top_downloads_by_votes' => $lang['misc_top_downloads_by_votes'],
                        
'misc_new_files' => sprintf($lang['misc_new_files'],$config['newlist_q']),
                        
'misc_new_files_since_your_last_visit' => $lang['misc_new_files_since_your_last_visit']));    
    
    
$no 1
    
$show_percent $config['top_list_q'];
    
$hits 0;
    
$f 0;
    
$result $db_sql->sql_query("SELECT dlhits FROM $dl_table");
    while (list(
$dlhits) = mysql_fetch_row($result)) {
        
$hitsalt $dlhits;
        
$total += $hitsalt;
        
$f++;
    }

    
$minhits = ($total 100)*$show_percent;
    
$minimum round($minhits,2);
                     
    
$leading $db_sql->query_array("SELECT * FROM $dl_table WHERE dlhits > $minimum ORDER BY dlhits DESC LIMIT 1");
    
    
$dl = array();    
    
$tpl->register('misc_top_rating_headline'sprintf($lang['misc_top_rating_headline'],$show_percent.'%'));    
    
$tpl->register('misc_top_total_downloads_to_total_files'sprintf($lang['misc_top_total_downloads_to_total_files'],$total,$f));
    
$no 1;
    
$top_file_loop = array();
    
$result2 $db_sql->sql_query("SELECT $dl_table.*, $cat_table.titel FROM $dl_table 
                                    LEFT JOIN 
$cat_table ON ($cat_table.catid = $dl_table.catid)
                                    WHERE 
$dl_table.dlhits >= $minimum ORDER BY $dl_table.dlhits DESC");
    while(
$dl $db_sql->fetch_array($result2)) {
        
$dl stripslashes_array($dl);
        if (
$dl['dlhits'] == $leading['dlhits']) {
            
$dl_percent "100";
        } else {           
            
$dl_percent round((100*$dl['dlhits'])/$leading['dlhits'],2);
        }
        
$bar_percent $dl_percent 20;
        
$see_percent round((100*$dl['dlhits'])/$total,2);
        
$rowcolor postcolor($no);                
        
$ctitel $dl['titel'];
        
$top_file_loop[] = array('no' => $no,
                                
'top_rating_url' => ('comment.php?dlid='.$dl['dlid']),
                                
'top_rating_filename' => $dl['dltitle'],
                                
'postcolor' => postCss($no),
                                
'misc_top_category' => sprintf($lang['misc_top_category'],('index.php?subcat='.$dl['catid']),$dl['titel']),
                                
'bar_percent' => $bar_percent,
                                
'misc_top_hits' => sprintf($lang['misc_top_hits'],$dl['dlhits'],$see_percent.'%'));
        
$no++;
    }    
    
$tpl->parseLoop('main''top_file_loop');
    
    if(
$config['newlist']) $parse_new_file_list true;
    if(
$sess->getSessVar("engine_last_visit")) $parse_personally_new_files true;
    
$tpl->parseIf('main''parse_personally_new_files');   
    
$tpl->parseIf('main''parse_new_file_list');    
                         
    
$tpl->register('query'showQueries($develope));         
    
$tpl->register('header'$tpl->pget('header'));
    
    
$tpl->register('footer'$tpl->pget('footer'));
    
$tpl->pprint('main');      
    
    exit();
}

if(
$action == "toplist_rating") {
    if(!
$auth->user['canseetopstatsfiles']) {
        
rideSite(('index.php'), $lang['misc_2']);
        exit();
    }

    
$tpl->loadFile('main''misc_toplist_rating.html'); 
    
$tpl->register('title'$lang['misc_top10_rating_headline']);
    
$tpl->register('breadcrumb'buildBreadCrumb(array($lang['php_overall_home'] => $config['mainurl'], $lang['title_engine'] => ('index.php'), $lang['misc_stats']=>('misc.php?action=toplist'), $lang['misc_top10_rating_headline'] => '')));            
    
$tpl->register(array('misc_more_stats' => $lang['misc_more_stats'],
                        
'misc_top_downloads_total' => $lang['misc_top_downloads_total'],
                        
'misc_top_downloads_by_rating' => $lang['misc_top_downloads_by_rating'],
                        
'misc_top_downloads_by_votes' => $lang['misc_top_downloads_by_votes'],
                        
'misc_new_files' => sprintf($lang['misc_new_files'],$config['newlist_q']),
                        
'misc_new_files_since_your_last_visit' => $lang['misc_new_files_since_your_last_visit']));        

    
$tpl->register('misc_top10_rating_headline'$lang['misc_top10_rating_headline']);
    
$no 1;
    
// Top 10 nach Bewertungen
    
$top10_rating_loop = array();
    
$result3 $db_sql->sql_query("SELECT * FROM $dl_table WHERE dlpoints!='0' ORDER BY (dlpoints/dlvotes) DESC LIMIT 0,10");
    while(
$top $db_sql->fetch_array($result3)) {
        
$top stripslashes_array($top);
        
$votes $top['votes'];
        
$bar_percent round($top['dlpoints']/$top['dlvotes'],2);
        
$rowcolor postCss($no);                
        
$top10_rating_loop[] = array('no' => $no,
                                    
'top10_rating_url' => ('comment.php?dlid='.$top['dlid']),
                                    
'top10_rating_filename' => $top['dltitle'],
                                    
'postcolor' => postCss($no),
                                    
'misc_top10_rating_rate' => sprintf($lang['misc_top10_rating_rate'],$bar_percent),
                                    
'misc_top10_rating_votes' => sprintf($lang['misc_top10_rating_votes'],$top['dlvotes']));
        
$no++;
    }     
    
$tpl->parseLoop('main''top10_rating_loop');   
    
    if(
$config['newlist']) $parse_new_file_list true;
    if(
$sess->getSessVar("engine_last_visit")) $parse_personally_new_files true;
    
$tpl->parseIf('main''parse_personally_new_files');   
    
$tpl->parseIf('main''parse_new_file_list');    
                         
    
$tpl->register('query'showQueries($develope));         
    
$tpl->register('header'$tpl->pget('header'));
    
    
$tpl->register('footer'$tpl->pget('footer'));
    
$tpl->pprint('main');      
    
    exit();
}

if(
$action == "toplist_votes") {
    if(!
$auth->user['canseetopstatsfiles']) {
        
rideSite(('index.php'), $lang['misc_2']);
        exit();
    }

    
$tpl->loadFile('main''misc_toplist_votes.html'); 
    
$tpl->register('title'$lang['misc_top10_voting_headline']);
    
$tpl->register('breadcrumb'buildBreadCrumb(array($lang['php_overall_home'] => $config['mainurl'], $lang['title_engine'] => ('index.php'), $lang['misc_stats']=>('misc.php?action=toplist'), $lang['misc_top10_voting_headline'] => '')));            
    
$tpl->register(array('misc_more_stats' => $lang['misc_more_stats'],
                        
'misc_top_downloads_total' => $lang['misc_top_downloads_total'],
                        
'misc_top_downloads_by_rating' => $lang['misc_top_downloads_by_rating'],
                        
'misc_top_downloads_by_votes' => $lang['misc_top_downloads_by_votes'],
                        
'misc_new_files' => sprintf($lang['misc_new_files'],$config['newlist_q']),
                        
'misc_new_files_since_your_last_visit' => $lang['misc_new_files_since_your_last_visit']));        

    
$tpl->register('misc_top10_voting_headline'$lang['misc_top10_voting_headline']);
    
$no 1;
    
// Top 10 nach Bewertungen
    
$top10_voting_loop = array();
    
$result4 $db_sql->sql_query("SELECT * FROM $dl_table WHERE dlpoints!='0' ORDER BY dlvotes DESC LIMIT 0,10");
    while(
$votes $db_sql->fetch_array($result4)) {
        
$votes stripslashes_array($votes);
        
$rating round($votes['dlpoints']/$votes['dlvotes'],2);
        
$rowcolor postCss($no);                
        
$top10_voting_loop[] = array('no' => $no,
                                    
'top10_voting_url' => ('comment.php?dlid='.$votes['dlid']),
                                    
'top10_voting_filename' => $votes['dltitle'],
                                    
'postcolor' => postCss($no),
                                    
'misc_top10_voting_rate' => sprintf($lang['misc_top10_voting_rate'],$rating),
                                    
'misc_top10_voting_votes' => sprintf($lang['misc_top10_voting_votes'],$votes['dlvotes']));
        
$no++;
    }      
    
$tpl->parseLoop('main''top10_voting_loop'); 
    
    if(
$config['newlist']) $parse_new_file_list true;
    if(
$sess->getSessVar("engine_last_visit")) $parse_personally_new_files true;
    
$tpl->parseIf('main''parse_personally_new_files');   
    
$tpl->parseIf('main''parse_new_file_list');  
                         
    
$tpl->register('query'showQueries($develope));         
    
$tpl->register('header'$tpl->pget('header'));
    
    
$tpl->register('footer'$tpl->pget('footer'));
    
$tpl->pprint('main');      
    
    exit();
}

if(
$action == 'since_last') {
    if(!isset(
$auth->user['userid'])) {
        
header("Location: index.php");
        exit;
    }
    
    
$l_date aseDate($config['longdate'],$sess->getSessVar("engine_last_visit"),1);
    
$l_date .= " - ".aseDate($config['timeformat'],$sess->getSessVar("engine_last_visit"),1);
    
    
$tpl->loadFile('main''misc_toplist_new_files_since.html'); 
    
$tpl->register('title'$lang['misc_files_since_last_visit']);
    
$tpl->register('breadcrumb'buildBreadCrumb(array($lang['php_overall_home'] => $config['mainurl'], $lang['title_engine'] => ('index.php'), $lang['misc_stats']=>('misc.php?action=toplist'), $lang['misc_files_since_last_visit'] => '')));            
    
$tpl->register(array('misc_more_stats' => $lang['misc_more_stats'],
                        
'misc_top_downloads_total' => $lang['misc_top_downloads_total'],
                        
'misc_top_downloads_by_rating' => $lang['misc_top_downloads_by_rating'],
                        
'misc_top_downloads_by_votes' => $lang['misc_top_downloads_by_votes'],
                        
'misc_new_files' => sprintf($lang['misc_new_files'],$config['newlist_q']),
                        
'misc_new_file_since' => sprintf($lang['misc_new_file_since'],$l_date),
                        
'misc_new_files_since_your_last_visit' => $lang['misc_new_files_since_your_last_visit']));        

    
$tpl->register('misc_top10_voting_headline'$lang['misc_top10_voting_headline']);    
                
    
$n_dl $db_sql->sql_query("SELECT d.*,g.titel,g.catid from $dl_table d
                                    LEFT JOIN 
$cat_table g ON  d.catid = g.catid
                                    WHERE dl_date > '"
.$sess->getSessVar("engine_last_visit")."' ORDER BY dl_date DESC");
    if(
$db_sql->num_rows($n_dl) >= 1) {
        
$no 1;
        
$i 0;
        
$newest_file_loop = array();
        while(
$dl $db_sql->fetch_array($n_dl)) {
            
$dl stripslashes_array($dl);
            
$upl_date aseDate($config['longdate'],$dl['dl_date']);        
            
$rowcolor postCss($no);    
            
$newest_file_loop[] = array('no' => $no,
                                    
'new_file_url' => ('comment.php?dlid='.$dl['dlid']),
                                    
'new_file_filename' => $dl['dltitle'],
                                    
'postcolor' => postCss($no),
                                    
'misc_upload_dtd' => sprintf($lang['misc_upload_dtd'],aseDate($config['shortdate'],$dl['dl_date'])),
                                    
'misc_top_category' => sprintf($lang['misc_top_category'],('index.php?subcat='.$dl['catid']),$dl['titel']),                                    
                                    
'misc_new_file_hits' => sprintf($lang['misc_new_file_hits'],$dl['dlhits']));
            
$no++;
            
$i++;
        }
        
$tpl->parseLoop('main''newest_file_loop'); 
        
$parse_top_file_list true;
        
$parse_no_top_file_list false;
    } else {
        
$tpl->register('misc_no_files_since_last_vist',$lang['misc_no_files_since_last_vist']);
        
$parse_top_file_list false;
        
$parse_no_top_file_list true;
    }
    
$tpl->parseIf('main''parse_top_file_list');   
    
$tpl->parseIf('main''parse_no_top_file_list');        
    
    if(
$config['newlist']) $parse_new_file_list true;
    if(
$sess->getSessVar("engine_last_visit")) $parse_personally_new_files true;
    
$tpl->parseIf('main''parse_personally_new_files');   
    
$tpl->parseIf('main''parse_new_file_list');    
                         
    
$tpl->register('query'showQueries($develope));         
    
$tpl->register('header'$tpl->pget('header'));
    
    
$tpl->register('footer'$tpl->pget('footer'));
    
$tpl->pprint('main');      
    
    exit();
}

if(
$action == 'formmailer') {
    if(
$auth->user['userid'] == 2) {
       
rideSite(('index.php'), $lang['formmailer_not_allowed']);
       exit();  
    }  
    
$tpl->loadFile('main''formmailer.html');         
    
    if(
$_GET['dlid']!='') {
        
$member $db_sql->query_array("SELECT dlauthor AS username, authormail AS useremail FROM $dl_table WHERE dlid='".$_GET['dlid']."'");
        
$tpl->register(array('mailid' => $_GET['dlid'], 'mailkind' => 'dlid'));
    } elseif(
$_GET['memberid']!='') {
        
$member holeUserID($_GET['memberid']); 
        
$tpl->register(array('mailid' => $_GET['memberid'], 'mailkind' => 'memberid'));
    }
    
    
$formmailer_headline sprintf($lang['formmailer_write_email_to'],$member['username']);
    
$tpl->register('title'$formmailer_headline);      
    
    
$tpl->register('breadcrumb'buildBreadCrumb(array($lang['php_overall_home'] => $config['mainurl'], $lang['title_engine'] => ('index.php'), sprintf($lang['formmailer_write_email_to'],$member['username']) => '')));    
    
    
$tpl->register(array('formmailer_headline' => sprintf($lang['formmailer_write_email_to'],$member['username']),
                        
'formmailer_topic' => $lang['formmailer_topic'],
                        
'formmailer_message' => $lang['formmailer_message'],
                        
'formmailer_receipient_will_see_your_mail' => $lang['formmailer_receipient_will_see_your_mail'],
                        
'formmailer_send_email_btn' => $lang['formmailer_send_email_btn'],
                        
'formmailer_reset_btn' => $lang['formmailer_reset_btn']));
    
    
$tpl->register('query'showQueries($develope));         
    
$tpl->register('header'$tpl->pget('header'));
    
    
$tpl->register('footer'$tpl->pget('footer'));
    
$tpl->pprint('main');      
    
    exit();
}

if(
$action == "send_mail") {
    if(
$_POST['subject'] == '' || $_POST['formmessage'] == '') {
        
rideSite(('misc.php?action=formmailer&dlid='.$_POST['dlid'].'&memberid='.$_POST['memberid']), $lang['rec_error56']);
        exit();    
    } 
    
    if(
$_POST['dlid']) {
        
$member $db_sql->query_array("SELECT dlauthor AS username, authormail AS useremail FROM $dl_table WHERE dlid='".intval($_POST['dlid'])."'");
    } else {
        
$member holeUserID($_POST['memberid']);
    }
    
    include_once(
$_ENGINE['eng_dir']."admin/enginelib/class.phpmailer.php");
    
$mail = new PHPMailer();
    
$mail->SetLanguage($lang['php_mailer_lang'], $_ENGINE['eng_dir']."lang/".$config['language']."/"); 
    if(
$config['use_smtp']) {
        
$mail->IsSMTP();
        
$mail->Host $config['smtp_server']; 
        
$mail->SMTPAuth true;
        
$mail->Username $config['smtp_username']; 
        
$mail->Password $config['smtp_password']; 
    } else {
        
$mail->IsMail();
    }
    
    
$mail->From $auth->user['useremail'];
    
$mail->FromName $auth->user['username'];
    
$mail->AddAddress($member['useremail'],$member['username']);
    
$mail->Subject $_POST['subject'];
    
$mail->Body $_POST['formmessage'];  
    
$mail->WordWrap 50;  
    
    
$mail->Send();               

    
$ride_url = ('index.php');
    
rideSite($ride_urlsprintf($lang['formmailer_mail_successfully_send'],$member['useremail']));
    exit();
}

?>
The only part I want is the "new_files". Any help would be very much appericated thanks...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 09-21-05, 06:30 PM
NeverMind's Avatar
NeverMind NeverMind is offline
Community VIP
 
Join Date: Aug 2003
Location: K.S.A
Posts: 2,257
Thanks: 0
Thanked 2 Times in 1 Post
you could use
PHP Code:

include('http://www.domain.com/misc.php?action=new_files'); 

but the script must be running on that domain...

yet better, you could explictly create a $_REQUEST['action'] = 'new_files'; before the inclusion of misc.php like:
PHP Code:

$_REQUEST['action'] = 'new_files';


include_once 
'misc.php'
this will do
__________________
PHPSimplicity
We don't need a reason to help people - Zidane [FF9]

Last edited by NeverMind; 09-21-05 at 06:33 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 09-21-05, 08:06 PM
ToeBee ToeBee is offline
Newbie Coder
 
Join Date: Jul 2005
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks so much... This did parse that action but there seems to be a small problem. The rest of the page that it was include to stop being parsed right after it. Any ideas?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #4 (permalink)  
Old 09-21-05, 09:39 PM
ToeBee ToeBee is offline
Newbie Coder
 
Join Date: Jul 2005
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Nevermind I removed the exit() and everything is workin again. Thanks for your help it means alot.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #5 (permalink)  
Old 09-22-05, 06:15 AM
NeverMind's Avatar
NeverMind NeverMind is offline
Community VIP
 
Join Date: Aug 2003
Location: K.S.A
Posts: 2,257
Thanks: 0
Thanked 2 Times in 1 Post
No problem.
glad I could help.
__________________
PHPSimplicity
We don't need a reason to help people - Zidane [FF9]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
The Reasons Why do you Need URL Rewriting MODULE to Enchance your Web? handry PHP 11 08-05-05 08:32 AM
2 flash websites for sale metamorph General Advertisements 5 01-09-05 11:03 PM
PHP help... Orchidsdance PHP 8 09-25-04 08:58 PM
Calling include dependant on url jonathen ASP 3 08-16-04 09:47 AM
dynamic include tutorial nick_a PHP 1 10-28-03 01:30 AM


All times are GMT -5. The time now is 08:54 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.