.0\r\n";
and
12 - $message = stripslashes($message);
Jeff
At 02:32 PM 8/26/2004, Michal Migurski wrote:
Hello all. I just finished placing a new server in production and PHP
is not working. I am getting undefined variable messages when trying
to submit php based forms. Register Globals is o
Manuel Lemos wrote:
Hello,
On 08/26/2004 02:12 PM, Jeff Oien wrote:
I'm using the code below and about a third of the posts aren't getting
through. We have no idea why and don't know where to start to trouble
shoot. Any ideas? Thanks.
Are you sure the data is always URL encode
Turned out to be something different about PHP 4.3.8 vs. 4.3.4. That was
the only difference between the two servers. As soon as I corrected that,
all files are working like they used to. Thanks for your help.
Jeff
At 05:22 PM 8/26/2004, John Holmes wrote:
Jeff - Webmaster wrote:
Intersting
and upload it and then refresh the
browser, any changes to the font, style, etc to the "footer" class are not
picked up. What should I look for??
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Nope, I have them all. Any other ideas??? Do I need to load the style.css
on every sub-page or just on the main page? Perhaps the style sheet is
cached so, after I upload a new one, I need to do something to flush the
cache?
js
"Jason Davidson" <[EMAIL PROTECTED]> wrote in message
news:[
I've tried many locations but can't figure out how to change the font
attributes for just my dropdown list on my page. The dropdown box populates
its data perfectly but I'd like to change the font to Arial Bold 10pt on the
items.
Here's my code:
?>
>
";
echo " Choose Event ";
mysql_connect
Is there an easy way to strip out everything but letters and numbers
from a string? I tried searching the archives and didn't come up with
much. Thanks.
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lect date1 from $table_name where date1 != '$today'";
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
rfectly:
"SELECT (COUNT(date1)/COUNT(DISTINCT(date1))) AS average
FROM $table_name where date1 != '$today'";
I was looking for the average amount of records (submissions) per day.
Thanks.
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
It sounds like what you need to do is create several different queries
based upon what the user selects from a form..
For instance...
Form fields:
A,B,C,D
(Drop downs are best for these field entries because you can control
them, if not it's just a little tougher.)
IF(isset($_POST['A']))
Just prove's the saying
"Make something idiot proof and someone will invent a better idiot"
Jeff
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 30, 2004 10:20 AM
To: [EMAIL PROTECTED]
Subject: [P
I don't know if this is an Apache (httpd) or a PHP issue (I suspect
PHP, but I may be doing something wrong with mod_suexec), so I hope
this is the right place to ask. I certainly appreciate any help anyone
can offer!
I am trying to get a PHP script to read a file that's outside the
Docum
On Dec 26, 2008, at 1:52 PM, Nathan Rixham wrote:
Jeff Weinberger wrote:
I don't know if this is an Apache (httpd) or a PHP issue (I suspect
PHP, but I may be doing something wrong with mod_suexec), so I hope
this is the right place to ask. I certainly appreciate any help
anyone can
E_USER_ERROR & E_COMPILE_ERROR & E_COMPILE_WARNING
(as you can tell, I prefer verbose logs, but not that verbose...).
None of these combinations have stopped the "PHP Deprecated: ..."
messages.
System info: Mac OS/X 10.5.7 Client version, PHP 5.3.0 running as a
CGI under Apac
On Jul 6, 2009, at 7:47 PM, Paul M Foster wrote:
On Mon, Jul 06, 2009 at 02:16:09PM -0700, Jeff Weinberger wrote:
Hi:
I am hoping someone can help me figure this out
I've just upgraded my PHP installation to 5.3.0. Now I am receiving
thousands of log messages of the form "PHP
On Jul 7, 2009, at 5:50 AM, Richard Quadling wrote:
2009/7/6 Jeff Weinberger :
Hi:
I am hoping someone can help me figure this out
I've just upgraded my PHP installation to 5.3.0. Now I am receiving
thousands of log messages of the form "PHP Deprecated: ...".
I know I h
On Jul 7, 2009, at 8:38 AM, Daniel Brown wrote:
On Tue, Jul 7, 2009 at 11:03, Jeff
Weinberger wrote:
This seemed like it would be the perfect solution...but alas it did
not
work. 22527 seems right, but after changing php.ini to that and
restarting
php and apache, I am still getting
On Jul 7, 2009, at 12:30 PM, Tom Worster wrote:
On 7/7/09 12:17 PM, "Jeff Weinberger" wrote:
On Jul 7, 2009, at 8:38 AM, Daniel Brown wrote:
On Tue, Jul 7, 2009 at 11:03, Jeff
Weinberger wrote:
This seemed like it would be the perfect solution...but alas it did
not
work. 2
wwroot\MyProjects\SecondOffering\htmlFns.php on line 140
Can anyone help?
Thanks, Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ge the $newarray[$name] to something to represent the current
element and just add the value to it?
I might be able to work around it then
""Jeff Taylor"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hey everyone,
> Newb back again - Im trying to popu
;
}
else
{
$newarray[$name] = 2;
}
}
Sorry for the spam everyone
"Robert Cummings" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Sat, 2007-03-10 at 15:31 +1030, Jeff Taylor wrote:
> > Hey everyone,
> > Newb back again - Im trying to
;
>
> On Thu, March 8, 2007 11:51 pm, Jeff Taylor wrote:
> > Hey all,
> > I'm very new to programming and PHP.
> > I want to pass instances of a class through an array, and then use a
> > foreach
> > later to grab details of each class at once... but it returns
ent
{
$public function __construct()
$this->type= 'Child';
}
}
$Child= new Child();
echo $Child->getType;
Can u see any reason why the type would return null?
Thanks,
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
OOPS!... typo
Please replace implements with extends:
class Child extends Parent
Sorry about that
""Jeff Taylor"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hey all, got a slight problem, where for some reasons my variables dont
seem
> t
Child class __construct
$this->foo.='Bar';
$this->foo2 .= rand(1,6);
$this->type = 'Child';
Outputs of variables foo == Bar Bar
foo2 == 11-16
type == Child
Th
Thanks everyone,
Gave me a much better understanding of it
"Jim Lucas" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Jim Lucas wrote:
> > Jeff Taylor wrote:
> >> Hey all, got a slight problem, where for some reasons my variables
> >>
elp me unless I compile it on my own. I'm looking for a
lighter weight solution, just the php code that's equivalent to the
classes ... doesn't it exist somewhere? A basis that Derick Rethans
used to make it?
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Yes, that's the best way to clean up after yourself. And you really
should use that on anything you have sitting around daemon like.
Jeff
Philip Thompson wrote:
On Sep 28, 2009, at 4:27 PM, Ralph Deffke wrote:
well this sound clearly to me like you are not freeing resultsets you
ar
Philip Thompson wrote:
On Sep 28, 2009, at 4:40 PM, jeff brown wrote:
Yes, that's the best way to clean up after yourself. And you really
should use that on anything you have sitting around daemon like.
Jeff
Philip Thompson wrote:
On Sep 28, 2009, at 4:27 PM, Ralph Deffke wrote:
well
supports fsockopen or curl,
only if your form hosting host does. (Boy that looks more confusing in
re-read than it felt writing it ;D ... )
To the foreign redirect target, both curl and fsockopen are supposed to
look like a browser hitting the site.
So if your site allows curl or fsockop
,
Working function : http://www.equipmentsearch.com/~jeff/tmp/image.php?i=w
Not working function : http://www.equipmentsearch.com/~jeff/tmp/image.php?i=n
http://www.equipmentsearch.com/~jeff/tmp/image.php.txt is the code.
Does anyone have any ideas or suggestions of where to look next?
Jeff
ow the function was failing.
>
>Is the image loaded from the local filesystem directly, or is it
> using an HTTP or other over-the-wire call? If it's not local, check
> to ensure that you have the URL fopen option enabled.
They're both local. The next poster in the this t
On 2010-06-16, at 11:37 AM, Richard Quadling wrote:
> On 16 June 2010 15:26, Jeff MacDonald wrote:
>> Hi Everyone,
>>
>> One of my developers is reporting a problem on our Live server but not our
>> devel server.
>>
>> Specifically when someon uploads
On 2010-06-16, at 11:44 AM, Richard Quadling wrote:
> On 16 June 2010 15:37, Richard Quadling wrote:
>> On 16 June 2010 15:26, Jeff MacDonald wrote:
>>> Hi Everyone,
>>>
>>> One of my developers is reporting a problem on our Live server but not our
>
freshbooks.com
On 2010-06-23, at 11:44 AM, Paul M Foster wrote:
> On Wed, Jun 23, 2010 at 09:52:21AM -0400, Floyd Resler wrote:
>
>> Now that I'm finally landing some freelance PHP work, I am in need of some
>> software that I can add clients, enter estimates, keep track of hours, and
>> creat
get a sense of the pros
and cons of each platform.
Thanks.
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
From: Matijn Woudt mailto:tijn...@gmail.com>>
Date: Wednesday, May 23, 2012 3:59 PM
To: "a...@ashleysheridan.co.uk<mailto:a...@ashleysheridan.co.uk>"
mailto:a...@ashleysheridan.co.uk>>
Cc: Jeff Gates mailto:gat...@si.edu>>,
"php-general@lists.p
Part_BOM($BOMPartID, $BOMreq, $phase);
//this calls itself and can refer/loop back to itself several times
}
}
?>
--
Thanks
ntry if one doesn't exist?
Thanks,
Jeff Burcher - IT Dept
Allred Metal Stamping
PO Box 2566
High Point, NC 27261
(336)886-5221 x229
j...@allredmetal.com
> -Original Message-
> From: ma...@behnke.biz [mailto:ma...@behnke.biz]
> Sent: Thursday, June 14, 2012 8:0
ed interface screens for AS400 programs in a manufacturing
environment. I can spend all the time I want programming the next greatest
program, but if the guys in the plant don't/won't use it, I have completely
wasted my time. My two cents.
Thanks,
Jeff Burcher - IT Dept
Allred Metal S
Hi,
I have been out of the loop and just did some quick skimming of SOPA/PIPA to
see what all the fuss was about. PIPA seems a little vague, but SOPA seems
pretty straight forward, stop piracy of copyrighted materials. I don't
understand what is wrong with that?
Thanks,
Jeff Burcher - IT
Hi,
I agree. My wife is from China and both copyright issues and government
enforcement of things have a whole new meaning there, so I understand the
concerns on both sides.
Thanks,
Jeff Burcher - IT Dept
Allred Metal Stamping
PO Box 2566
High Point, NC 27261
(336)886-5221 x229
j
t was
created by military and higher educational systems, both tax supported
entities. Corporations and governments maintain the infrastructure that
keeps the internet working. Without governments and corporations there would
be no internet. They are the internet. The alternative is to go back to
Hi,
I am relatively new as well. I tried both of those methods with no luck. I
finally had success using odbc_connect(). See below:
$conn = odbc_connect("Driver={SQL
Server};Server=$server;Database=$database;", $user, $password);
Thanks,
Jeff Burcher - IT Dept
Allred Metal Stamping
P
internet or a government controlled internet? Also, for those of us who are old
enough to remember posting to text based bulletin boards, the influx of
corporate money has greatly increased the infrastructure and functionality of
the internet and has helped to make it a global phenomenon, w
s are in the blanks and I need to delete them all
and move the list email address from the CC: box to the TO: box. If I am not
paying attention and don't do this little email musical chairs process,
sometimes I will get out of office replies from some of the email addresses in
the re
ng I just need
to get creative with the switch or elseif commands, but thought I would ask
the list first if they had any better suggestions.
Thanks,
Jeff Burcher - IT Dept
Allred Metal Stamping
PO Box 2566
High Point, NC 27261
(336)886-5221 x229
j...@allredmetal.com
ou get my point.
Comments? Suggestions?
(I am also the kind of guy who thinks quality made hand tools from the 1800s
are superior to many purchased today at Lowes or Home Depot.)
Thanks,
Jeff Burcher - IT Dept
Allred Metal Stamping Works
"Making Metal Parts since 1946."
> -
> http://www.php.net/unsub.php
>
Age: 54
Mousepad: Yes
Laser mice don't like reflective surfaces so much and if I don't carve out
desk space for my mouse with a mousepad, I find that moving my mouse over
multiple sheets of paper, paperclips, and whatnot is not very effective and
somewhat frustrating.
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
<http://ids.si.edu/ids/dynamic?container.fullpage&id=http://americanart.si.e
du/images/$tmpImageDirectory/$artwork.accessionNumber_1a.jpg> " +
$tmpImageDirectory + "/" + $accessionNumber + "_1ajpg";
That's as far as I've gotten. I don't know how to pu
On 8/3/11 10:41 AM, "ad...@buskirkgraphics.com"
wrote:
>> -Original Message-
>> From: Gates, Jeff [mailto:gat...@si.edu]
>> Sent: Wednesday, August 03, 2011 10:23 AM
>> To: php-general@lists.php.net
>> Subject: [PHP] Syntax Question
>>
&g
lanation on how to do steps 2 and 3?
Thanks,
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
plain this error? It's completely breaking my script. I
suspect, that the *real* error is somewhere earlier in the file, but
I've read through it 20 times and just can't find anything out of place
(can't find any obvious syntax errors, for example).
Thanks for any help you can
nk it indented the cursor 4
spaces, and I hit 'home' and typed the delimiting token, and forgot
about the whitespace at the end (normally, whitespace is
ignored/collapsed by the parser).
Jeff Schmidt
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
truction set up so strangely, is that I was testing out
to see if certain things were causing problems. Originally I had it
setup more like how you suggested. I only changed it to test some
theories out about what might be causing the parser error.
Jeff Schmidt
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
after the token. This caused
the parser to basically treat the whole rest of the script file as a
heredoc string, which is where the problems came from.
Jeff Schmidt
Jason Barnett wrote:
Jeff Schmidt wrote:
Hello,
I've made the source available at:
http://www.weldingconsultants.com/wcapp/admin
but you'd probably use a run-once script that
did that in a batch).
Anyhow, that is just my thoughts on the matter. Packages like
Mailman are very good at managing mailing lists, so I would just use
something like that to take care of that problem.
Jeff Schmidt
--
PHP General Maili
ou want.
As an earlier poster suggested, the best way to do this would be to use
the in_array construct, which tests to see if the first value is in the
array specified as the second value.
if (in_array($name, array("jim", "andrea", "bob")))
{
//code here
}
Jeff Schm
I would be tempted to do the following.
First, I would setup the html form so that the text boxes are named
something like 'age[Andrea]', 'age[Bob]', etc. When the form submitted,
this will give you an array, accessible as $_POST['age'] (or
$_GET['age'] depending on whether you used POST or GET
e values of
$name and $age to make sure they are legal, and in the correct format,
and then assign them individually, as before.
Jeff
Jeff Schmidt wrote:
I would be tempted to do the following.
First, I would setup the html form so that the text boxes are named
something like 'age[Andre
a FALSE?
I'm running PHP 4.3.10, ldap query is against Windows 2003 server. I'm a
relative newb to PHP.
thanks.
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I sent this to the original user, but forgot to CC it to the list. I'm just
sending this now, for completeness.
- Original Message -
From: "Jeff Schmidt" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, March 25, 2005 5:10 PM
Subject: Re: [PHP] Proble
k on
how to actually pipe the file into the script so that it winds up in the
$buffer variable.
Can anyone give me a clue as to how I can do this?
Thanks,
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
www.eforcer.com
It's a fairly cheap but very good ticket system that can auto inject
emails into it or retrieve them from a pop account.
Jeffrey S. McKeon
Manager of Information Technology
Telaurus Communications LLC
[EMAIL PROTECTED]
+1 (973) 889-8990 ex 209
> -Original Message-
> From
ile_get_contents('{$handle}');
But that doesn't work either...
Thanks,
jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
>
> > -Original Message-
> > From: Jeff McKeon [mailto:[EMAIL PROTECTED]
> > Sent: 7 April 2005 1:03 pm
> > To: php-general@lists.php.net
> > Subject: [PHP] File_get_contents()
> >
> >
> > Does anyone know if it's possible
ni,
> file_get_contents('php://stdin'); should work
>
>
> On Apr 7, 2005 2:21 PM, Jeff McKeon <[EMAIL PROTECTED]> wrote:
> >
> > Sorry,
> >
> > What I'm actually doing is this.
> >
> > $handle=fopen("php//stdin/&q
Because I was unclear on how file_get_contents() worked... :o)
The php manual is a little vague on the topic.
Best Reguards,
Jeff McKeon
IT Manager
Telaurus Communications LLC
[EMAIL PROTECTED]
+1 (973) 889-8990
> -Original Message-
> From: Josip Dzolonga [mailto:[EMAIL PRO
er) session_start() and on the same page and in the same
script?
I'd prefer to avoid creating an index.php page that only sets a cookie
(or starts a session) and immediately redirects to another page just to
get around this problem
Thank you very much for your help!!
--Jeff
On Wed, Apri
ed,2,9);
}
I basically have a phone bill that sometimes has the phone number
preceeded by "00" and sometimes not.
When it has the "00" I want to trim it with the substring command.
Thanks,
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Ok, I have no clue what version of PHP I have installed, 4.??.??, and I have
like the newest version of MySQL insatlled, and PHP and MySQL work fine
together, excpet when I use mysql_fetch_row($query) then I have problems,
mysql_fetch_array($query) works fine, but not mysql_fetch_row($query). Why
ok, this same query, works EVERYWHERE ELSE, why won't it work now? it
returns to me:
Warning: Supplied argument is not a valid MySQL result resource
$query_result = mysql_query("SELECT * FROM AotH_Users");
while ($row = mysql_fetch_array($query_result, MYSQL_NUM)){
--
PHP General Mailing List
Ok, not exactly pure PHP problem but I hope someone here has seen this
before..
I'm got an upload form on a webpage, here's the code:
SNIP
?>
Select the file type and browse for that file. The press 'Upload'. The
file will be uploaded to the server.
No changes in the database are done du
> -Original Message-
> From: Jeff McKeon
> Sent: Tuesday, April 20, 2004 10:21 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Upload file form
>
>
> Ok, not exactly pure PHP problem but I hope someone here has
> seen this before..
>
> I'm got an upl
The problem is solved.
/etc/httpd/conf.d/php.conf
the parameter LimitRequestBody is set to 524288 by default.
Jeff
> -Original Message-
> From: Jeff McKeon
> Sent: Tuesday, April 20, 2004 10:48 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [PHP] Upload file form
>
&g
ge
is loading in the main frame, then stop the function after the page in
the main frame has finished loading.
Thanks!
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
>
> JavaScript is your friend.
>
Yeah I thought it would probably involve some javascript. I'm just not
very good at it and not sure how to refernce the other window in a
frameset. I know there is a way, I just don't know the mechanics of it.
Jeff
> -Original Me
Is there a way in PHP to make a call to a javascript funtion?
I have a javascript that I want to start when an sql query begins and
stop when the php code is done. Is this possible?
Thanks,
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net
function('go') in the tag.
But I need someway to turn it off... A simple:
Echo "function('stop')"; at the end of the page
doesn't seem to work. Should it?
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
try to remove the ' ' from around the field names in the
where statement..
Or
SELECT * FROM My_Table
WHERE field_1 like '%$keyword%' && status = 'active'
|| field_2 like '%$keyword%' && status = 'active'
|| field_3 like '%$keywo
ing to show the user that the server is still
"thinking".
Jeff McKeon
IT Manager
Telaurus Communications LLC
[EMAIL PROTECTED]
(973) 889-8990 ex 209
***The information contained in this communication is confidential. It is intended
only for the sole use of the recipient named above and ma
keeps waving
while the php script runs. In Apache, it doesn't. If you don't look at
the status bar in IE it and see that it still says "loading
http://blahblah"; appears that the page has already loaded...
jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
nt?
I mean, I could:
$b = $A->getObjectB();
$b->methodFromObjectB();
But since I only want to use object B once, it seems like a waste to
store it and then use it. I do this kind of thing in other OO languages
quite frequently.
Jeff Schmidt
signature.asc
Description: OpenPGP digital signature
ed I do on my end? Or, is the error in the authorizenet.php
script on the secure server?
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ral ampersand?
I'm not sure that this is exactly a bug, but it is an annoyance
nonetheless, as it adds a lot of white noise when I try to validate my
pages.
Jeff Schmidt
signature.asc
Description: OpenPGP digital signature
Thanks, that did the trick. Now my pages actually validate. :-)
Jeff
Robin Vickery wrote:
On Tue, 15 Jun 2004 09:50:55 -0400, Jeff Schmidt
<[EMAIL PROTECTED]>
I have some tags that look like:
And session management is rewriting these as:
Which at first glance appears fine, right? But the p
Does anyone know where I would be able to find the earliest version of
PHP/FI or PHP possible? I am looking for the earliest possible version
for academic reasons.
Thanks in advace.
--
Jeff Loiselle - http://www.newnewmedia.com/~jeff
--
PHP General Mailing List (http://www.php.net/)
To
> PHP is already installed. If you want the latest 4.x series, use the
> entropy installer. If you want PHP 5 you will have to build it
> yourself from source. I have recently done that, I found this article
> useful in doing so:
>
> http://www.phpmac.com/articles.php?view=177
Any idea why the HF
URL\n");
How do I gather up all the variables in $_POST and attach them as a
string after the question mark? Thanks.
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Thanks for the helpful examples. One other question. Is there an
advantage to sending the URL via a header as opposed to doing http_post
like this?
http://shiflett.org/hacks/php/http_post
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
The client's vendor only specifies that it's = pairs and
that it's URL encoded so I don't think that's an issue. But don't let
that squelch any discussion. :)
Jeff Oien
Vail, Warren wrote:
I believe we all missed something important here, but I've been
Is there an easy way to make a number have no comma or decmal points?
I've tried string replace with the comma but thought there would be a
better alternative that I'm missing to cover more bases. number_format
seems to add instead of take away items.
Jeff
--
PHP General Mailing
it is a path problem then how do I get around this, I can control my
local server config but I only have a local server for development.
Thanks,
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
failed.
[/quote]
Here is the form code:
[code]
Filename on your PC:
Please click ONCE and be patient:
[/code]
Pertinent php.ini settings:
version = 4.3.10
file_uploads = on
upload_max_filesize = 2M
post_max_size = 8M
Any guidance would be appreciated.
Jeff
--
PHP General Mailing L
Chris wrote:
> [error] => 2
> And also gives you an error code.
Yes, I know and knew that. That's why the upload ultimately fails
(which is okay).
My point is that when a file's size exceeds the MAX_FILE_SIZE value,
I want the browser to (a) detect that it's too large BEFORE
attempting to upload
Dan Parry wrote:
> I might be wrong but this would be classed as
> 'exploitable'... Webservers should not be allowed
> to read from or write to clients... Of course there
> is ActiveX...
I think we're off the point.
My script is simply interrogating the value of the
$_FILES[userfile][size] a
Thank you, all who replied. This helps me understand. I might give a
try to the workarounds some suggested.
Great newsgroup.
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
TIA for any guidance you might be able to offer.
Jeff
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Greg -
Greg Maruszeczka wrote:
> Jeff:
> The following books really helped me get my head around basic
> OOP and design patterns in PHP, especially the first one
> which directly addresses both PHP4 and PHP5:
>
> 1. PHP Architect's Guide to PHP Design Patterns, Jason E.
Nathan Nobbe wrote:
>
> although some people believe differently than i; i would argue
> trying to learn how to design w/ the classes that php4 provides
> is a waste of time. most books you will find regarding object oriented
> design assume the language has the basic constructs. ppp mainly.
> a
901 - 1000 of 1162 matches
Mail list logo