vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How to use sessions with scripts called from php_include (https://vborg.vbsupport.ru/showthread.php?t=64492)

Aurous 04-28-2004 05:30 PM

How to use sessions with scripts called from php_include
 
Hi

I have a banner rotation script that is called from php_include.

It works fine, but I would like the banners rotate only once every user session. How do I do this? Sorry, but I'm a n00b in php.

Please help.

Thanks

Aurous 04-29-2004 05:54 AM

anyone?

NTLDR 04-29-2004 06:04 AM

Please wait at least 24 hours before bumping posts :)

Aurous 04-29-2004 06:14 AM

I was told 12 hrs at vBulletin.com

Now, .org has their own rules? Where can I read them bloody rules, so when I get a reply back in my thread, it is actually useful!

Thanks

Aurous 04-29-2004 07:37 AM

Here's the simple script (banner.php) I made to rotate banners.

Code:

<?php
srand((float) microtime() * 10);
 
$input = array(
"<img src=\"$stylevar[imgdir_misc]/banner1.jpg\" width=\"480\" height=\"60\" />",
"<img src=\"$stylevar[imgdir_misc]/banner2.jpg\" width=\"480\" height=\"60\" />",
"<img src=\"$stylevar[imgdir_misc]/banner3.jpg\" width=\"480\" height=\"60\" />"
);
 
$rand_keys = array_rand($input, 3);
 
echo $input[$rand_keys[0]] . "\n";
 
?>

and this what I have in php_include:

Code:

ob_start();
include_once("banner.php");
$randomlogo = ob_get_contents();
ob_end_clean();

Now the question I have is what should I change in the script so it only run once every user session? Please help.

Thanks

Aurous

Aurous 04-29-2004 09:47 AM

I just came up with an idea, but I have no clue how to implement this.

I can call the script mentioned above by a cron job every couple hrs, and make the output store in my database.

Then make another php script that will call the html tags in the database. I dont know if this is a very smart idea. If someone can come up with a better suggestion then please let me know.

Thanks

Aurous

Aurous 04-30-2004 12:44 PM

anyone?

Aurous 05-02-2004 02:25 AM

*bump*


All times are GMT. The time now is 08:15 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01019 seconds
  • Memory Usage 1,717KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete