Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP






SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Image Wont Appear In Firefox...


im using the following code to display an image for a query.. the image displays fine in Safari and IE but in Firefox its just blank space.

echo "<img src="imagesshows.gif">";




View Complete Forum Thread with Replies
Sponsored Links:

Related Messages:
Image Caching In Firefox
I have been trying to create a slideshow of random pictures on my website. It has been quite succesful (it works perfectly in IE) but Firefox refuses to cooperate... It seems to have something to do with the way Firefox caches pictures, but I'm not sure.

There is a html file, which puts rotate.php as a picture on the page.

There is a javascript file, which puts a new rotate.php in the image frame every four seconds.

There is a PHP file, rotate.php, which randomly outputs a picture.

I'm not sure I'm posting this on the right forum, since PHP, HTTP headers and javascript are involved and I don't know what part is causing the problem.

I'll post a part of rotate.php below..

header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache"); // HTTP/1.0
thumb($filename, 170, 170); // thumb is a working thumbnailgenerator, it outputs correctly in both browsers)

View Replies !   View Related
Image Cannot Be Displayed In Firefox
I finally managed to get the gd2 libary installed on my server and started to look @ the gd tutorial on phpfreaks. I copied and pasted the code to see what would happen.

    <?php
        header ("Content-type: image/png");
        $img_handle = ImageCreate (230, 20) or die ("Cannot Create image");
        $back_color = ImageColorAllocate ($img_handle, 0, 10, 10);
        $txt_color = ImageColorAllocate ($img_handle, 233, 114, 191);
        ImageString ($img_handle, 31, 5, 5,  "My first Program with GD", $txt_color);
        ImagePng ($img_handle);
    ?>

I get this when I try and view the image in firefox. The image path/img.php cannot be displayed, because it contains errors. And in ie it tries to load the image via quicktime?

View Replies !   View Related
Image Upload Problem With Firefox But Not In IE7
I have the following script that works in my CMS on Firefox but does not do so in IE7. Code:

View Replies !   View Related
Firefox Cache's The Captcha Image
I have a captcha script that I downloaded (dont remember from where) and am having some problems with it. Firefox cache's the captcha image and when someone enters the wrong code and hits the back button the same captcha image is shown. It works fine on IE but on Firefox it craps out. Here is the code: ....

View Replies !   View Related
Problem With Image-verify On Firefox And Netscape
this image-verify code works on ie, but not on firefox or netscape (it just gets a message "The image '...image-verify.php' cannot be displayed, because it contains errors." instead).

View Replies !   View Related
FireFox OK IE Not?
FireFox works fine, Internet explorer does not return any of the (isset($_POST['logout'])) (isset($_POST['login'])) it just pops up a new window:

<?php
if (isset($_POST['logout'])) {
session_unregister("uid");
session_unregister("usr");
session_destroy();
$sessionPath = session_get_cookie_params();
setcookie(session_name(), "", 0, $sessionPath["path"], $sessionPath["domain"]);
} elseif (isset($_SESSION['uid']) && isset($_SESSION['usr'])) {
?>

<div ALIGN="CENTER">

..........

View Replies !   View Related
Firefox
anyone know why the page dont change when using onchange in firefox but works perfect in ie.

<select id = "program" onChange = "ChangeProgram(this.options(this.selectedIndex).value)">

View Replies !   View Related
Firefox / IE
the following script works perfectly in firefox, but not in IE, any ideas as im baffled? Code:

View Replies !   View Related
IE6 V Firefox
I have a form that that registerers details to a mysql database. My problem is when a field has been duplicated I am showing an error page that displays eg username already exists.

Now in firefox I can go back and the form is still intact I just change the duplicate username and carry on. But in IE6 it will not go back or if it does a message displays information already submitted.

View Replies !   View Related
Firefox Vs. IE Help
My site looks great in Firefox, but looks horrid in IE. I was wondering if I gave you the site address if you could go there in both browsers and help me with my problem.

The problem in IE comes after you click on a link. which are invisible in the site navi on IE.

View Replies !   View Related
Firefox Vs IE
i got a problem with my browser when i try to login to my website. i use javascript to link the login page to the next page using the codes below: HTML Code:

<script type="text/javascript">location.href="login/welcome.php"</script>

when i used this code at firefox browser it works well, however when using IE it doesn't works. the address bar will shows something like . Quote:

http://localhost/mcmc/login/login/welcome.php

when i just put HTML Code:

<script type="text/javascript">location.href="welcome.php"</script>

it works on IE but not in firefox.. what's wrong with the path? can anyone help me what should i do to make sure both browser can give the same result?

View Replies !   View Related
IE Vs. FireFox
How I hate IE. With FireFox your page will look better and be more simpler to code. For example i use a for loop to display all the picture's(thumbnails) in a folder.

With Firefox it display's like 5 thumbnails per row and then goes to the next row automaticly so everything is fit to screen. WIth IE it displays all thumbnails on one row and you have to scroll horizontally to view them. Any ways around stuff like this with IE?


P.S. I fixed this paticular situation with an if statement but in future cases is there a way to make firefox and IE both compatible so they have the same output?

View Replies !   View Related
Display XML In Firefox
I admit, but I can no longer see XML displayed "correctly" in
Firefox - it currently appears as a long line of text.

The feature to see XML displayed, indented, etc., is really useful when
testing, especially as I am doing a lot of Ajax at the moment.

Please can anyone suggest what settings I might have changed?
Otherwise, I am going to have to use IE!!! Help!

View Replies !   View Related
Mail() IE Vs Firefox
I'm trying to make a form work, which it does from Firefox (and
Netscape) but not from Internet Explorer.

The form is simple:
<form action="register.php" method="post"><p>'

print '
<p class="txtni">All Fields below are required:</p>
<span class="txtni">First Name:</span> <input type="text"
name="first_name" size="20" value="' . $_POST['first_name'] . '" /> <br />
<span class="txtni">Last Name:</span> <input type="text"
name="last_name" size="20" value="' . $_POST['last_name'] . '" /><br />
<span class="txtni">Email Address:</span> <input type="text"
name="email" size="40" value="' . $_POST['email'] . '" /><br /><br />
<span class="txtni">Phone Number:</span> <input type="text" name="phone"
size="20" value="' . $_POST['phone'] . '" /></p>
....
some instructions...

<p><span class="txt">Your Message:</span> <textarea "name="message"
cols="80" rows="5" value="' . $_POST['message'] . '"
/></textarea></span></p>
<p align="center"><input type="submit" name="submit" value="Send email
to Volunteer Coordinators!" /></p>
</form>'

I'm using the following to send the form results:

$body="Another Happy Volunteer has signed up,
Name: {$_POST['first_name']} {$_POST['last_name']}

Phone Number: {$_POST['phone']}

Email Address: {$_POST['email']}

Message: {$_POST['message']}";

mail("mail@address.com", 'Another Happy Volunteer Had Signed Up',$body,
"From: mail@addreess.com
"."Reply-To: {$_POST['EMAIL']}");

View Replies !   View Related
PHP And Firefox Problem
I had no joy with this in alt.comp.lang.php so thought I would try here
instead.

Hopefully someone will make sense of this for me.

Using:
PHP 4.3.10 (cgi) (built: Dec 21 2004 09:18:25)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies

Server version: Apache/2.0.52
Server built: May 9 2005 18:13:36

Linux 2.6.9-1.667smp #1 SMP Tue Nov 2 14:59:52 EST 2004 i686 i686 i386
GNU/Linux
--------------------------------------------------------------------------

I have a few php scripts running, on login, the session is written correctly
ie:
--------------------------------------------------------
VCID|s:3:"s34";firstname|s:3:"Ken";lastname|s:6:"Steven";
--------------------------------------------------------

going from page to page it is still fine. Using IE when I transfer to my
HTTPS scripts, the session data is written fine ie:

----------------------------------------------------------------------------
VCID|s:3:"s34";firstname|s:3:"Ken";lastname|s:6:"Steven";WC_CompPrize|s:5:"3
:::4";WC_UserID|s:3:"s34";
WC_CompID|s:4:"SS01";WC_Answer|s:2:"a2";WC_HowManyTickets|s:2:"20";WC_Freebi
es|d:10;
WC_TotalTickets|d:30;WC_TotalCost|i:60;
----------------------------------------------------------------------------

BUT, following the exact same route through the site, if I am using FIREFOX
this is what I get:

----------------------------------------------------------------------------
VCID|s:3:"s34";firstname|s:3:"Ken";lastname|s:6:"Steven";3:::4|N;s34|N;SS01|
N;a1|N;|N;WC_CompPrize|N
----------------------------------------------------------------------------

Note that all of the WC_nnnnnnn prefixes are ommited. No matter what I do I
just cannot get the correct session data written to the session file but
ONLY if I use
FireFox. Why the hell should that be???

$_SESSION['WC_CompPrize'] = $compPrize;
$_SESSION['WC_UserID'] = $VCID;
$_SESSION['WC_CompID'] = $compID;
$_SESSION['WC_Answer'] = $q_answer;
$_SESSION['WC_HowManyTickets'] = $howmany;
$_SESSION['WC_Freebies'] = $half;
$_SESSION['WC_TotalTickets'] = $TotalTickets;
$_SESSION['WC_TotalCost'] = $total;

Works for every other browser, in desperation I even tried:

session_register($WC_compPrize);
session_register($VCID);
session_register($compID);
session_register($q_answer);
session_register($howmany);
session_register($half);
session_register($TotalTickets);
session_register($total);

View Replies !   View Related
Mozilla Firefox And PHP
I have some PHP that works fine on my Dell Win2K XP when I use "php.exe"
and "php-cgi.exe"; not sure how these executeables got there but
someone must have installed them. But what I need to do is have PHP
scripts run in my Mozilla Firefox 1.5.0.4 browser. Currently they don't.

Do I need to install some plugin for my browser? If so can someone
provide a URL? Or if not maybe you could advise me on what needs to be done.

View Replies !   View Related
PHP Pgae In Firefox
This is a weird problem i have just noticed but in internet explorer my pages work fine everything looks good but in firefox one of the pages is showing an extra slash.

should show:

http://www.site.com/details.php?id=1685
but shows:

http://www.site.com/details.php?id=1685
you see the extra slash after the trailing slash, i'm not sure if its something i should do in php or what

googling the error i came up with this:

http://gallery.menalto.com/node/29368
has anyone else came across this at all?

View Replies !   View Related
PHP Session And Firefox
I am redeveloping my personal website into a complete php website, using sessions.  The session have always worked in the passed but it doesn't seem to keep the session data between different pages.  This is only when using Firefox.. Seems fine with internet explorer. Code:

View Replies !   View Related
Gzip And Firefox
I have enabled gzip for my site by using

<?php
ob_start("ob_gzhandler");
{my page Code}
ob_flush();
?>

I works perfectly with internet explorer but when I open my site with firefox it shows a blank page. Is there any method to enable gzip for fire fox ? And Could I use gzip with internet explorer only by detecting the user agent while showing firefox users non-gzip page?

View Replies !   View Related
Not Working In Firefox
Works fine in IE but not FF. However,taking away the use of php and using the same html and css the header loads fine in FF . I have also tested the header by itself in ff and is fine. I don't know if the problem is the css or php but as it works fine using css and html without php I am assuming I've done soemthign wrong with the php but what?

View Replies !   View Related
Layout On Firefox
My code works great on IE. However there's a problem with firefox, as my images cannot be found, and after i had a look at the source code i noticed that the path is wrong. The path to my image files is 'images/file.jpg' but firefox shows the path as 'images%5Cfile.jpg'. Anybody knows why? Do i have to add anything in my script that will prevent this?

View Replies !   View Related
IE And Firefox Differences
I have written a php script (with the help of some code from here :D) to extract data from a database, put the results into an array, and then do some work on the array to get the number of words that appear more than once in the array. The data is then put into a table and displayed on the screen. Code:

View Replies !   View Related
Firefox Asking To Save Php Doc?
I have an RSS feed being dynamically rendered using PHP and MySQL. In firefox, clicking the link causes a prompt window to come up asking if i want to open or save the php file as opposed to just following the link.

Why does this happen and how can I prevent it?

I'm setting the Content type to application/rss+xml


View Replies !   View Related
Mozilla Firefox
following code works perfectly on IE but it does not works with Mozilla Firefox. What is the problem?

<?php
$lang=$_GET['lang'];
if ($lang=="fr") {
$location="http://66.249.91.104/translate_c?hl=EN&ie=UTF-8&oe=UTF-8&langpair=en%7Cfr&u=http://www.somedomain.com/&prev=/language_tools";
} elseif ($lang=="de") {
$location="http://66.249.91.104/translate_c?hl=EN&ie=UTF-8&oe=UTF-8&langpair=en%7Cde&u=http://www.somedomain.com/&prev=/language_tools";
} elseif ($lang=="it") {
$location="http://66.249.91.104/translate_c?hl=EN&ie=UTF-8&oe=UTF-8&langpair=en%7Cit&u=http://www.somedomain.com/&prev=/language_tools";
} else {
$location="http://www.somedomain.com";
}

print"<script type="text/javascript" language="JavaScript">
window.location="$location";
</script>";
?>

View Replies !   View Related
Php5 + Firefox
First let me say thanks for the brilliant site, I could not have installed apache/mysql/admin/php without it. When i use internet explorer i can access my phpadmin via localhost Yet when I use firefox the download manager asks which program i wish to use to open the php file. any clues?

View Replies !   View Related
Firefox Problems
IE does not show this line from my code: "freeing resultout of fixit" But Firefox does and it causes problems with headers for a redirection. I am calling this twice in a function named fixit: mysql_free_result($records); Why is that line being sent and how do I stop it? mysql.trace_mode = Off.

View Replies !   View Related
Include & FireFox
I used PHP Include method for showing some external files on my site, But when I browse my site through FireFox, it dont show Include files. Is there any special code for showing Include files in FireFox? I used <?php include("include.php"); ?>

View Replies !   View Related
IFrames In FireFox
Im trying to use an i-frame to display site news (not allowed to directly connect to the database, so an i-frame to a page on the other server is the only way). It displays fine in IE, but in FireFox it only displays at about 1/3 the height it should. Code:

View Replies !   View Related
Problem With Firefox
I am facing a problem with firefox. When trying to load a webpage, it is asking me to use IE7.0 or Netscape.

I learnt that, I can use IE-Tab plugin on firefox to overcome this problem and installed the same.

Still, I am not able to get the page loaded!
Now, It is giving the error that "Missing plugins".

Any idea on how to get this corrected?

View Replies !   View Related
Firefox Recognising
I have created a flash application with a php web mailer. The mailer itself works well but when you try to type into the input boxes using firefox it recognises the @ key on a uk keyboard as the " sign and vice versa. The flash itself is embeded within a PHP document that checks whether a robot is accessing the site or a human user for search engine purposes.

View Replies !   View Related
Table Differences In FireFox And IE
I am writing a routine in php that takes info entered into a text box by a user, explode() it, then place it into certain textboxes by using java (or so is the plan right now). Problem I am encountering, is that when a user copies the table info from IE, it is return delimeted, wherebye firefox, it is not. I need some help in order to make this thing compatible for both engines.

View Replies !   View Related
Problems PHP4, IIS And Firefox
I'm a complete and utter newbie when it comes to PHP so likely I'm missing
something daft.

I've downloaded the PHP4.3.10 win32 installer and run it and have a sample
php page. In IE it runs fine and produces the expected result but Firefox
tries to download the php file itself instead. Can anyone shed some light on
what is going wrong?

php files on internet sites work fine so I assume I've set IIS up
incorrectly.

View Replies !   View Related
Cookie-making For IE Or Firefox.
I have a problem. I am beginer in cookie-making. I make one, on my laptop,
where I run a web server, I can use my cookie. It operates properly
independently if I use IE or Firefox.

However, I applied my PHP code on a Linux server, where an Apache
web server run with a PHP interpreter. On a remote computer I wanted to
access my cookie-enriched page. The cookie was saved locally in the
cookie-directory of my browser, but it had no any value. I experienced the
same in case of IE and Firefox.

View Replies !   View Related
Truncated Post In Firefox
Am having troubles posting a filename in firefox 1.0. It seems my
variable (which contains a slash) is truncated but only in firefox.
I'm running apache & php4.3.9 on windows XP. magic_quotes_gpc is off
and I've been googling around for half a day without any luck. The
code is below:

<?php
$strDesc = $_REQUEST['strDesc'];
$fileUpload = $_REQUEST['fileUpload'];
$fileUpload_type;

if(empty($strDesc) || $fileUpload == "none")
die("You must enter both a description and file");

// Database connection variables
$dbServer = "localhost";
$dbDatabase = "file_repository";
$dbUser = "root";
$dbPass = "";

$fileContent = implode('', file($fileUpload));
$fileContent = addslashes($fileContent);

$sConn = mysql_connect($dbServer, $dbUser, $dbPass)
or die("Couldn't connect to database server");
$dConn = mysql_select_db($dbDatabase, $sConn)
or die("Couldn't connect to database $dbDatabase");

$dbQuery = "INSERT INTO myTexts VALUES ";
$dbQuery .= "(0, '$strDesc', '$fileContent', '$fileUpload_type')";
mysql_query($dbQuery) or die("Couldn't add file to database");
echo var_dump($fileUpload);
echo "<h1>File Uploaded</h1>";
echo "The details of the uploaded file are shown below:<br><br>";
echo "<b>File name:</b> $fileUpload_name <br>";
echo "<b>Uploaded to:</b> $fileUpload <br><br>";
echo "<a href='uploadfile.php'>Add Another File</a>";
?>

I've tested this in ie and opera and it works in both however firefox
does something funny. If I specify fileUpload as "C:Document1.txt" on
the previous page, var_dump() then shows that $fileUpload is a
string(16) in opera and ie but only a string(13) in firefox
(specifically, firefox sees "Document1.txt"). I've taken most of this
from a tutorial located at:
http://www.devarticles.com/c/a/MySQ...-PHP-and-MySQL/

View Replies !   View Related
Firefox Issue With My Code
The below code is included on and upload page I have, it work perfectly in
IE but for some reason the upload button doesn't show up in Firefox, any
idea?
<form action="upload.php" method="post">

<LEGEND>Select the number of files to upload</LEGEND>
<br><br><select name='num'>
<?php
for($i = 1; $i <= 20; $i++)
{
echo "<option value=".$i.">".$i."</option>";
}
?>&nbsp;
<input type="Submit" value="Upload Files">
</form>

View Replies !   View Related
How To Detect FireFox In Php Language?
i have this line in javascript Code:

if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {}
else {}

and i want to use PHP if statement to detect browser to act accordingly.

View Replies !   View Related
Firefox/Explorer Problem
Processing some text from an external text file into a web page. If I
use this:

<?
$s = file_get_contents('text.txt');
$search = array("@
@si");

$replace = array('</br>');

echo preg_replace($search, $replace, $s);
?>

Explorer shows the text as it appears in the file;

This is some test text
This is some test text

This is some test text
This is some test text

but Firefox displays

This is some test textThis is some test textThis is some test textThis
is some test text

Now if I use

<?
$s = file_get_contents('text.txt');
$search = array("@
@si");

$replace = array('<br></br>');

echo preg_replace($search, $replace, $s);
?>

The firefox output is correct but Explorer now double spaces everything

This is some test text

This is some test text

This is some test text

This is some test text

View Replies !   View Related
Forms & Formatting In IE & Firefox
Does anyone here know why Internet explorer knocks out forms when they are in table-based layouts? It works fine in Fire Fox, but I'm not able to work out how to do it so that Internet Explorer can read it too.

View Replies !   View Related
$site Works In Firefox, Not In IE???
I have a 'send to friend' email form working just fine from Firefox, but in Internet Explorer the link is not showing up.  Here's what I've got:

<?PHP $site = $_SERVER['HTTP_REFERER'];?>

My form uses "link" to store the $site variable.

<input type="hidden" name="link" value="<?PHP echo $site; ?>">

It calls another .php link where it posts the message using the global function: Code:

View Replies !   View Related
Blank Page On PC Or Mac, IE Or Firefox
I tested this php form, and it worked on 2 out of three computers, all of which were on different networks. The one that didn't work stalled after I hit submit . . . all I got was a blank page . . .  no error messages or anything. This happened whether it was on a PC or Mac, in Firefox, or IE. Any ideas what could be causing it?

Code: ....

View Replies !   View Related
Popup Autocomplete In Firefox
I've got a form that has a textbox. In firefox (2.0) the pop up just transfer to the next page (process.php) and stay in the background until you click on it and then it disappears.

The code is working on both pages, it just really disturbing to see this stupid autocomplete box transfering between pages.

View Replies !   View Related
Code Working In Firefox But Not IE 7
I have some code that seems to be processed by Firefox (v 2.0.0.3) but not IE7 (v 7.0.530.11). This is the first time i have ever encountered something like this before and was just wondering if you guys could shed any light. Code:

View Replies !   View Related
Firefox Cache Error
I want to make firefox refresh the page when it is loaded, but it wont
Works in IE, not FF... ?

header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

something else i should add to make it work with mozilla?

View Replies !   View Related
Firefox Translation Of Email '@' In Get
I’m using a Get to pass data to the next page. With Internet Explorer there are no problems. With Firefox, the @ symbol in the email address is translated into %40. This causes a problem in this snippet:

   <input type="hidden" name="from" value="<?php echo $_GET['Email']; ?>"

[customer@alltel.net comes through as customer%40alltel.net in Firefox]
What fixes are available?

View Replies !   View Related
Session In Firefox And Opera
If I view my script Opera and Firefox, I am having some various problems that don't exist in IE6 or IE7, and I think they may be due to the way that Firefox and Opera handle cookies, but I'm not sure. If anyone can look at my script at tell me if there are some problems I'd appreciate it. BTW, php.ini is set for session.use_trans_sid=1. Code:

View Replies !   View Related
Select Works In Firefox, But Not IE
Below is a portion of my form that I am using to display a value, but have the ability to change the value and submit the change to the database.  It works perfectly in Firefox, but doesn't not in IE 7.  Can anyone offer any suggestions?  Thanks as always.

<TD width=98 height="29" align="center">
<?

echo '<select name="ud_OnlineOnsite">';
echo '<option'.($OnlineOnsite=="ONLINE"? ' selected' : '').'>ONLINE</option>';
echo '<option'.($OnlineOnsite=="ONSITE"? ' selected' : '').'>ONSITE</option>';
echo '</select>';

?>
</td>

View Replies !   View Related
Firefox Redirect Link
I need help with this link which works fine in IE7 but will not redirect you to the page in FF. I think it is a path statement error that for some reason firefox has trouble with . Here is the statement that i am working with. Any and all help with this would be greatly appreciated.

print ("<TD$bgColor><FONT COLOR=#000000 SIZE=-1>
        <a href="includesc12_cases_detail_id.php?case_id=$id&".SID.""><B>$caseno</B>[/url]</TD>");

View Replies !   View Related
Mozilla/firefox Session
I am using session() for my login everything works okay for IE,Netscape

1. When i Log off
2. When i close my browser and login again, create new session

when i use mozilla

When i logged in for the first time works okay but when i close the browser and login again it seems the session id still remain.

Any one encountered this in mozilla?

View Replies !   View Related
Session Issues With Firefox
I understand that firefox browser carries the same session over various windows/tabs even if we open a totally new window from task bar icon. I've one web page which help users to manage files over many machines and it will take time to load when they choose to perform some actions like compress or delete large number of files over the network. When I use firefox, I cant load the same site on a different window/tab to do some other tasks while waiting for the first action to finish.

It waits for the first page to finish loading then it loads the second page. No issue with IE, if I open two different window from the task bar. Obviously as both of them having two different session. I can surf through the site or perform other actions while waiting for the first one to finish. Is there anything I can do with PHP to work around this issue? I'm using PHP on Linux with Apache.

View Replies !   View Related
Pages Work In IE, But Not Firefox
I am currently using Wordpress as our main webpage. I modified one of the pages so I can use them for other things such as a Contact page, guestbook, etc. without having the sidebar items that Wordpress uses.

Now the pages look fine in Internet Explorer but they are messed up in Firefox. Can anyone let me know what I need to change/fix to get these pages working in Firefox?

View Replies !   View Related
Firefox And Header() Logic
I have the following, which works just fine in IE:

header('location:'.$redirect);

Where $redirect is = the page they came from. What do I have to do differently to accomodate Firefox? I have this on another page and it seems to work just fine:

header('location:http://www.cnn.com');

View Replies !   View Related
IE / Firefox Differences When Coding??
Ok this is my code it displays like this in Firefox when completed the input would have been shout test 123 for You (me) and 456 for Xantho which is hwo its supposed to look..

You shouted, "test 123"
Xantho shouted, "test 456"

But the same inputs when viewed in IE display as

You shouted, "shouted, "test 123""
Xantho shouted, "shouted, "test 456""

why is it displaying the action twice in ie? Code:

View Replies !   View Related

Copyright © 2005-08 www.BigResource.com, All rights reserved