> Robert Cummings wrote:
>> I think this is great but have one bit of hopefully constructive
>> criticism... the horizontal real estate is too small, or the font is
>> too large, I find the content wraps terribly :/
>>
>> Cheers,
>> Rob.
>>
>
> Hi Rob--
>
> True. Alas, it has to fit in our design,
> - Edwin - wrote:
>>
>> Sort of a PHP-AI eh? :) Hmm... I don't think that's a bad idea at all,
>> but...
>>
>> I wonder how you'd deal with new messages/posts/questions which: 1.
>> Real people don't even understand, and
>> 2. Real posters don't even understand what they're asking.
>>
>
> Well,
What browsers are having the problems?
On Tue, 2002-11-19 at 15:36, Baumann Reto wrote:
> Hi all
>
> Does somebody know if there is a potential problem with
> Header("Location: ");
> not working properly?
>
> I have a redirection, but it seems that on some browser, this doesn't work.
> I
If you are running them as commandline apps you can just pipe "|" the
output to another program
i.e. phpapp.php | perlapp.pl
That should work as long as you deal with the arguments properly...
On Tue, 2002-11-19 at 09:50, Kelly Meeks wrote:
> Is there any way to get a php script to grap the
No...
Javascript need to send that data back to the server and how are you
going to do that?
You will have to use a form or a link or some method to send it to the
server.
Now you can use php to write your javascript code that can be used to
link to a php file that can be run on the client side
_menu.php";>Liheap Processing
> Menu
>
>HREF="https://122.192.204.199/main.php";>Main Menu
> HREF="https://122.192.204.199/logout.php";>Logout
>
>
>
>
>
>
>
> On Mon, 2002-11-18 at 04:44, BigDog w
What does the entire form look like?
On Mon, 2002-11-18 at 17:43, Dave J. Hala Jr. wrote:
> I selected the option that would have the value "4", what I get is
> "4SQN=4" I should get just the value "4"
>
>
> On Mon, 2002-11-18 at 04:33, BigDog
Probably the best way is to convert the times all into seconds and then
do the math to get the last day of the week.
Should be relatively easy...
HTH
On Mon, 2002-11-18 at 05:57, Noodle Snacks wrote:
> I want to get the unix timestamps of the first and last days of this week...
>
> Currently I
The explicit dot is to tell the system that you want the current working
directory.
So by saying "./tmp" you want the tmp (directory or file) that is
located in the current working directory.
If i understand what you are saying is that "./tmp" is a directory in
the current working directory. If
That is what you should be getting right?
When you have a select statement that has a value as the first one then
that is what you will get when you post or get the form.
if you want a blank one then do
and that should not pass anything in the post or get...
On Mon, 2002-11-18 at 17:30, Dav
try using pear...
On Sat, 2002-11-16 at 22:53, Leif K-Brooks wrote:
> I'm looking for a good class for forms that will work with
> register_globals off. I was planning to modify Manuel Lemos's class,
> but it turned out to be too big of a task. Any ideas?
>
> --
> The above message is encr
This is how i deal with dates...
$date = date in the database.
$today = strtotime( gmdate( "Y-m-d" ) );
$spd= 60 * 60 * 24; // seconds per day
$fdate = strtotime( substr( $date, 0, 10 ) );
$future = ( $fdate - $today ) / $spd;
do the comparision with $future and it
http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&group=comp.lang.javascript
On Fri, 2002-11-15 at 23:07, SED wrote:
> I need to finish a project using PHP and JavaScript but the references
> for JavaScript I'm using is rather old. I'm looking for a JavaScript
> postlist similar to this but with
Just never do it period...that is the best habit to have...
That is poor coding on the programmers part...
On Fri, 2002-11-15 at 00:59, Maxim Maletsky wrote:
> using this method for a production environment is incredibly vulnerable.
> Just think of having a link on that page to some other site (o
You are sending the header information to the browser before the session
stuff begins...
make sure that you call "session_start();" right after your I have a problem, i'm new in PHP
>
> It is the problem in my browsegive me the solution please
>
> Warning: Cannot send session cache limiter
Are you sure that the size is specified correctly?
I remember that i have but down 32 for mb when really it takes bytes as
the number so i had 32 bytes which sucked for me...
On Thu, 2002-11-14 at 20:36, Emiliano Marmonti wrote:
> Hello all,
>
> when I try to upload a file I receive the follo
There sys admins just do not want to deal with it...
On my box i have about 2-3 versions of php and 2 version of apache at
any given moment...
but it can get confusing sometimes... :)
On Thu, 2002-11-14 at 20:27, Mike D wrote:
> Thanks for the feedback BigDog and Jason Wong (you guys r
You would have to pass it through the "get" method...
You can only pass stdin to the binary...
On Thu, 2002-11-14 at 20:05, Mike D wrote:
> Is it possible to pass STDIN data to a php script via wget or lynx
> (cuz Apache is not installed in CGI mode, so I don't have a binary to
> call)??
>
When you compile php + apachemany people have php as a DSO. So
there is no actual binary file in a bin directory that is called. You
can also have php as a module that is in the apache core, where it is
loaded automatically in apache (not a DSO).
You can run php as a cgi which uses the binar
od and it
> always prompts as well.
>
> Thanks,
>
> Ed
>
>
> On 14 Nov 2002, BigDog wrote:
>
> > Ed,
> >
> > When you do auth with mysql and they succeed then u can set the
> > $_SERVER['PHP_AUTH_USER'] and in theory that sh
Ed,
When you do auth with mysql and they succeed then u can set the
$_SERVER['PHP_AUTH_USER'] and in theory that should allow you to connect
to the directory because that should be set for apache http
authentication.
You might have to play with it, but i am sure you can get it to work.
On Thu,
Does this not work...
On Thu, 2002-11-14 at 14:11, CJ wrote:
> I have a "contact us" php script on my site that allows users to email
> direct from the webiste. I want to be able to pass the to address and
> subject line to the script so I can call teh web page from elsewhere on the
> site an
You might want to do a search on google and see if someone has written a
class on creating word documents.
I am almost certain that someone has created on.
This will save you much time...
On Thu, 2002-11-14 at 12:34, michael wrote:
> hello
>
> I'm trying to generate ms-word files with php. Unti
This is how I do it.
I create a php page that gets the image and sends the correct header.
Then in my other php page that displays the details about a user i call
. Then in showperson i send the
correct image headers and the image is displayed properly.
HTH...
On Thu, 2002-11-14 at 10:50, Krzys
Why can u not do a page that displays the images as img src?
That should work for ya...instead of sending the headers. Are u saving
the image in the ldap server?
On Thu, 2002-11-14 at 09:27, Tony Earnshaw wrote:
> People,
>
> I'm trying to produce a "book of mugs" (a 'mug' is a 'face') for pe
Did all this really have to be sent to the list?
On Wed, 2002-11-13 at 22:28, Rasmus Lerdorf wrote:
> > If you don't care that I (or anybody else) can evaluate the
> > presentations generated by your tool why did you bother to follow up my
> > message in the thread when I exposed my evaluation of
yeah,
include_path ="path" this allows you to put scripts in other places out
side the web document tree.
For example: lets say you have configuration files that contain all your
database passwords...you can put the document in a directory like
/usr/local/php/config_scripts
and add that director
What you need to do is go into your apache_1.3.26/src/modules/php4
directory and and clean out the libphp files.
1. Stop apache.
2. Remove lib files from apache_1.3.26/src/modules/php4
3. Do a make clean in apaches top dir.
4. Do a make clean in php top dir.
5. Remove config.cache in php dir.
6.
In theory the memory should be free and the array should be smaller...
On Wed, 2002-11-13 at 07:11, Monty wrote:
> Does unsetting an array element make the array smaller? For example, if I
> have two elements in an array...
>
> $array = ("title" => "Title of Document",
> "cont
000
> BigDog <[EMAIL PROTECTED]> wrote:
>
> > You have two problems it seems.
> >
> > 1. Wrong connection security...now you are using ldaps
> > 2. Now you have the incorrect rdn.
>
> Oh .. i get it
> you mean the second error is due to a ldap/nds pro
message is
> > >
> > > Warning: LDAP: Unable to bind to server: Strong authentication required
> > >
> > > and when i connect via SSH its something like that
> > >
> > > Warning: LDAP: Unable to bind to server: No such Object in ...
>
Can u not get it from php.net...the zip file that contains all the
extensions and dlls...not the installer...
That should have the one that you need.
I am still thinking it is an issue with the path...it took me about a
week to get it all working...
On Tue, 2002-11-12 at 23:08, Nick Richardson
What type of strong authentication does it want?
Do you need to connect via ssh or something...
On Tue, 2002-11-12 at 22:13, Karim Jafarmadar wrote:
> hello
>
> I want to connect to a local NDS via LDAP, but when i try to bind i get
> the error:
>
> Unable to bind: Strong authentication requ
In your php.ini file you can turn on all the errors have have them
displayed...
I would suggest doing that and you should see some errors if there are
any.
Have you verified that dates in the database via mysql command line or
gui application.
On Tue, 2002-11-12 at 21:27, Cesar Aracena wrote:
>
Has anyone every used curl to do something similar to wget on linux?
BigDog
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Basically you are not going to get the value type of the snmp, ie OID,
timeticks, integers, etc..
Ray Hunter
"Razvan Cosma" <[EMAIL PROTECTED]> wrote in message
Pine.LNX.4.44.0205011203110.32753-10@mach2">news:Pine.LNX.4.44.0205011203110.32753-10@mach2...
> First of all, gretings to ev
36 matches
Mail list logo