Log in

View Full Version : some help


AN-net
03-18-2004, 09:01 PM
ok im using a php file as way to have an image displayed. i want it to like <img src="http://www.blah.com/blah.php?do=image&id=666">
but it doesnt work. it only works if its just blah.php and nothing after it, is there anyway around this or fix?

heres my code:

if($do=="image"){
if(empty($a)){
header("Location: $vboptions[bburl]/images/error.gif");
}
else{
header("Location: $settings[imagelink]");
}
}

AN-net
03-19-2004, 03:02 PM
anyone?

AN-net
03-20-2004, 02:49 PM
please can someone tell me how to get around this?

AN-net
03-21-2004, 07:06 PM
anyone, pleaseeeee:)

AN-net
03-22-2004, 12:43 AM
heres my code:

if($do=="image"){
if(empty($a)){
header("Location: $vboptions[bburl]/images/error.gif");
}
else{
header("Location: $settings[imagelink]");
}
}

magnus
03-22-2004, 01:37 AM
Err.. there's not really enough code there to determine much, however, I don't see where you've assigned "$do" to anything, or even "$a" for that matter.

Might wanna start off with:
if ($_POST['do'] == 'image')
{

And work your way from there.

AN-net
03-22-2004, 01:39 AM
well someone is linking to this file so it would $_REQUEST['do'] anyways, wouldnt it?;)

AN-net
03-23-2004, 02:18 AM
plzzz i could really use some help on this one:)

Velocd
03-23-2004, 03:41 AM
How about posting more of the code? You're leaving us at empty when you specify variables that have no origin.

vBulletin files should always structure around the following syntax:

<?php

error_reporting(E_ALL & ~E_NOTICE);

define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'filename');

$phrasegroups = array();

$specialtemplates = array();

$globaltemplates = array(
'template_1'
);

$actiontemplates = array();

require_once('./global.php');

if ($_REQUEST['do'] == 'something')
{

// do stuff

}

// etc.

?>

AN-net
03-23-2004, 06:51 PM
heres where it originates from: the $a comes from a link

<?PHP
error_reporting(E_ALL & ~E_NOTICE);
include('./global.php');
$globaltemplates = array(
'STANDARD_REDIRECT',
'STANDARD_ERROR',
);
$fsettings= $DB_site->query("SELECT * FROM affiliates_settings");
$settings= $DB_site->fetch_array($fsettings);

if($_REQUEST['do']=="image"){
if(empty($_REQUEST['a'])){
header("Location: $vboptions[bburl]/images/error.gif");
}
else{
header("Location: $settings[imagelink]");
}
}

AN-net
03-24-2004, 08:15 PM
anyone?

AN-net
03-25-2004, 07:55 PM
i need some help with this pllzzz:)

NTLDR
03-25-2004, 08:57 PM
<?php

error_reporting(E_ALL & ~E_NOTICE);

// global templates MUST be defined before we
// require global.php or it doesn't pre-fetch them
$globaltemplates = array(
'STANDARD_REDIRECT',
'STANDARD_ERROR',
);

require_once('./global.php');

$settings = $DB_site->query_first("
SELECT * FROM affiliates_settings
");

if($_REQUEST['do'] == 'image'){
if(empty($_REQUEST['a'])){
header('Content-type: image/gif');
readfile("$vboptions[bburl]/images/error.gif");
} else {
header('Content-type: image/gif');
readfile("$settings[imagelink]");
}
}