Forum: PHP May 12th, 2006 |
| Replies: 3 Views: 1,476 I'm with paradox814 on this. We can't really help you until you say something.
If you don't want to tell us, you can start by checking out http://www.php.net/features.file-upload. |
Forum: PHP Apr 8th, 2005 |
| Replies: 2 Views: 1,698 Yeah, I saw that on the PHP homepage on the 1st. I wonder whose dog that is... |
Forum: PHP Apr 8th, 2005 |
| Replies: 1 Views: 11,310 Change the line in php.ini to this:
session.save_path = c:/Temp/
BTW, that semicolon is commenting out your line, it will not be effective if you leave it. Also, forward slashes are required... |
Forum: PHP Mar 22nd, 2005 |
| Replies: 4 Views: 3,003 Please post your code. I'm nearly positive that you mistyped something. |
Forum: PHP Dec 8th, 2004 |
| Replies: 9 Views: 3,439 That's true for most people. People with slow connections will want it on the client. |
Forum: PHP Dec 8th, 2004 |
| Replies: 9 Views: 3,439 pcschrottie:
Yes, that's how I would do it server side. However, I think he wanted a client side solution to his problem (i.e. a box that pops up if you try without filling it out). |
Forum: PHP Dec 6th, 2004 |
| Replies: 9 Views: 3,439 Javascript can do it. Search google for it. |
Forum: PHP Sep 28th, 2004 |
| Replies: 8 Views: 4,081 |
Forum: PHP Sep 28th, 2004 |
| Replies: 8 Views: 4,081 I suppose I should have worded that differently - what I meant was:
If you go back over your code and fix all the weird things you did when you didn't know any better, you might thing of something... |
Forum: PHP Sep 28th, 2004 |
| Replies: 8 Views: 4,081 In my experience, it sometimes helps to fix things that aren't broken; often you think of better ways to do things when you do. |
Forum: PHP Sep 28th, 2004 |
| Replies: 8 Views: 4,081 In most cases, there are not compatibility problems. However, you might want to read this (http://www.alt-php-faq.org/local/1/). I don't mind, but some do - remember to google your problems before... |
Forum: PHP Jun 21st, 2004 |
| Replies: 3 Views: 3,825 jcates23,
I know what your bug is. You are using the HTML entity for ampersand instead of "&", the correct notation :sad: . PHP does not convert HTML entities to ordinal characters before... |