not understanding the option array thing... not understanding the option array thing...
 

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

Main Menu

not understanding the option array thing...

Started by Team Aero-K, October 16, 2007, 05:02:56 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Team Aero-K

call me a n00b, but i'm not understanding how you would open the pictures in a new window using option array?

my code is this...
<?php
  
include "./cpg1413/cpmfetch/cpmfetch.php";
  
$objCpm = new cpm("./cpg1413/cpmfetch/cpmfetch_config.php");
  
$objCpm->cpm_viewRandomMedia(1,5);
  
$objCpm->cpm_close();
?>


how do i play with the option array to get it to open in a _blank window? i've read the docs, but dont understand how to do it.

Team Aero-K

tried this...still opened in same window...

<?php
  
include "./cpg1413/cpmfetch/cpmfetch.php";
  
$options = array( 'windowtarget' => '_blank' );
  
$objCpm = new cpm("./cpg1413/cpmfetch/cpmfetch_config.php");
  
$objCpm->cpm_viewRandomMedia(1,5);
  
$objCpm->cpm_close();
?>


from my understanding of the docs...it should be like this?

(sorry about half-assed asking for help above, and in previous post...just readyour rant, lol)

Team Aero-K

<?php
  
include "./cpg1413/cpmfetch/cpmfetch.php";
  
$options = array( 'windowtarget' => '_blank' );
  
$objCpm = new cpm("./cpg1413/cpmfetch/cpmfetch_config.php");
  
$objCpm->cpm_viewRandomMediaFrom("",1,5,$options);
  
$objCpm->cpm_close();
?>


solved...sorry for the wasted thread!  ;D