I second that last one- I really like PHPMailer.
It's free, easy to use, and has a lot of features. I use it for all my mail functions unless I am sending a quick error notice to myself (then I just use the built in mail function call).
User Profile
Collapse
-
Gzip and caching
Hi folks, I couldn't find any posts about this issue-
I am using Firebug to examine my page loading. When I call a large JS file, it gets downloaded once and then shows as being cached the next time I go to the page.
For example, it shows "9 requests 100 KB (90 KB from cache)"
However, if I change the JS file to a PHP file with GZIP, it compresses that 90KB file down to 20KB, but never says... -
Find the value of a variable when variable name is a string
Hey folks. I have searched high and low for the answer to what seems to be a simple problem. Perhaps I don't know how to describe the title properly so if this has been dealt with before, please forgive me.
I would be glad to take an answer for this in Actionscript, Javascript, or PHP. (because I have run into the problem in all 3 scripting langs.)
Color1 = "red"
Color2 = "blue"
Color3... -
Movie Clip disappears on refresh in Internet Explorer
Hi everyone. I have a group of developers here and none of us can explain this problem. It seems a theoretical impossibility, but it's happening anyway.
I have a flash presentation im working on for my company. You can see it and its problem here-
http://portfolio.yourc areerinfo.com/importfolio.php
The back button clip in the corner goes back to the site that brought them here.
It always works... -
Thanks for the reply. I will drop the -moz line.
I had actually already looked at that hack from a google search, but I didn't think that applied as it was meant for IE6, which we don't use.
IE7 displays transparent PNGs just fine unless the filter is applied, regardless of whether its from a stylesheet or a javascript event handler.
For example, I have a button that toggles the icon to 10% opacity....Leave a comment:
-
PNG loses transparency when opacity filter is applied in IE7
Hi everyone. The title says it all.
I have a collection of PNGs with drop shadows. They work great in IE7 and FF.
If I add filters in my stylesheets, such as
icon {filter: alpha(opacity=1 0);}
-moz-opacity: .10;
opacity: .10;
then the PNG shadows all turn into solid black pixels (even If I say opacity 100).
Has anyone ever dealt with this issue? This is for an internal application... -
Thanks for the response! I knew I had to use session variables, but it just wasn't working. Apparently I missed something, because I put this code in and now everything works great-
foreach($_POST as $k => $v)
{
$_SESSION[$k] = $v;
}
The strange thing is, I used this before and it didn't work. I must have mucked it up elsewhere. Thanks though! It works.Leave a comment:
-
POST/SESSION variables and pagination
Hi folks, I have been working on a property listing search for a company for a while now and have hit a roadblock. I have searched the net up and down. A lot of Google results lead to this site, but I have never been able to get it to work.
Here's the setup-
The user submits search criteria via POST. The results php page pulls the $_POST array and displays the results with pagination of 20 results per page with links...
No activity results to display
Show More
Leave a comment: