[PHP] Calling Function Identity

2001-10-03 Thread Ray Hilton
, then just using a function as a wrapper so that set_error_handler uses it. I'm thinking there must be a better way of doing this, anyone have any ideas? Ray Hilton -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] configuring with gd for TTF

2001-07-03 Thread Ray Hilton
Cheers, Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] Shell scripting and PHP.

2001-07-03 Thread Ray Hilton
I think it's the same as perl, using the backtick operator, ie: $result = `uptime`; That's ` NOT ' -Original Message- From: Johan Vikerskog (ECS) [mailto:[EMAIL PROTECTED]] Sent: 03 July 2001 09:41 To: [EMAIL PROTECTED] Subject: [PHP] Shell scripting and PHP. Hi all! If i want to

RE: [PHP] configuring with gd for TTF

2001-07-03 Thread Ray Hilton
PROTECTED]] Sent: 03 July 2001 09:40 To: Ray Hilton; 'PHP Mailing List' Subject: RE: [PHP] configuring with gd for TTF Ok. Well, given mine works, I thought I would tell you what I have! My phpinfo says exactly the same: GD Support enabled GD Version 1.6.2 or higher FreeType Support enabled

RE: [PHP] configuring with gd for TTF

2001-07-03 Thread Ray Hilton
: Warning: libgd was not built with TrueType font support in /home/ray/webroot/rayh/htdocs/gfx/image.php on line 48 Every single time... Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original Message- From: Brian White [mailto:[EMAIL PROTECTED]] Sent: 03 July 2001 09:08 To: Ray Hilton

RE: [PHP] Fatal Error: Call to undefined function: sybase_connect() in

2001-07-03 Thread Ray Hilton
Have you sompiled in sybase support? By defauly php doesn't compile with sybase functions, you must specifcally tell it too... -Original Message- From: nelo manuel [mailto:[EMAIL PROTECTED]] Sent: 03 July 2001 09:27 To: [EMAIL PROTECTED] Subject: [PHP] Fatal Error: Call to undefined

RE: [PHP] Fatal Error: Call to undefined function: sybase_connect() in

2001-07-03 Thread Ray Hilton
(according to mastering linux book, install and configuring php to access data from sybase) can some else pls help me :( From: Ray Hilton [EMAIL PROTECTED] To: 'nelo manuel' [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: [PHP] Fatal Error: Call to undefined function: sybase_connect() in Date: Tue

RE: [PHP] General Coding Question

2001-06-21 Thread Ray Hilton
I don’t think that’s XHTML complient... Correct me if im wrong? -Original Message- From: Chris Lee [mailto:[EMAIL PROTECTED]] Sent: 20 June 2001 23:50 To: [EMAIL PROTECTED] Subject: Re: [PHP] General Coding Question im here to start a flamewar. dont use then. why not use ' ? echo

[PHP] Time Language Settings

2001-06-21 Thread Ray Hilton
How do I go arround getting php to output the time() function in a different language? I have tried the setlocale() function to no avail, perhaps my system doesn't have the appropriate locale to do this? If so, then how do install them on Red Hat 7? Cheers, Ray Hilton - [EMAIL PROTECTED] http

RE: [PHP] Turning Off Headers

2001-06-20 Thread Ray Hilton
If your using the standalone binary, I /think/ its something like php -q If it's the module in apache, you will have a problem as apache itself will add a certain degree of header information. -Original Message- From: Meles Meles [mailto:[EMAIL PROTECTED]] Sent: 19 June 2001 14:03 To:

RE: [PHP] HELP problems running PHP4 script in CRON

2001-06-20 Thread Ray Hilton
get php to build both at the same time? The binary and the .so module? At the moment, I just have to compile twice. Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original Message- From: Splashy [mailto:[EMAIL PROTECTED]] Sent: 19 June 2001 15:29 To: [EMAIL PROTECTED] Subject: [PHP

RE: [PHP] SetCookie weirdness

2001-06-20 Thread Ray Hilton
This is actually a security feature of cookies, so that domains that don’t match your cookie cannot read personal details set by another site. Don't worry, its all in order ;) Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original Message- From: Tomaz Kovacic [mailto:[EMAIL

RE: [PHP] Store PHP Code in MySQL?

2001-06-20 Thread Ray Hilton
... Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original Message- From: Joseph Koenig [mailto:[EMAIL PROTECTED]] Sent: 19 June 2001 23:23 To: [EMAIL PROTECTED] Subject: [PHP] Store PHP Code in MySQL? I've been playing a little bit trying to store some PHP code in MySQL and get

RE: [PHP] inserting a variable into a variable

2001-06-20 Thread Ray Hilton
What on earth are you trying to do? :) I'm not sure what your getting at, do you mean defining a variable based on another variables name? Perhaps try using an array, and specifying $rm($cat) Sorry, im not too sure what you mean Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original

RE: [PHP] time

2001-06-20 Thread Ray Hilton
well, if its a server side script, the only clock available to it is the one on the server... Ray -Original Message- From: Jon Yaggie [mailto:[EMAIL PROTECTED]] Sent: 20 May 2001 15:51 To: [EMAIL PROTECTED] Subject: [PHP] time quickly can some one tell me if time() return server or

RE: [PHP] image retrival from db?

2001-06-19 Thread Ray Hilton
still do stuff like thumbnail generation on the upload and then store the paths to the file in the database. Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original Message- From: Steve [mailto:[EMAIL PROTECTED]] Sent: 19 June 2001 00:57 To: [EMAIL PROTECTED] Subject: [PHP] image

RE: [PHP] What is the deal with cookies

2001-06-19 Thread Ray Hilton
Well, when you set a cookie, it is sent in the headers, so the browser isnt going to send the cookie back to the server until a refresh, the best way is to either cash the userlog on details in the log in function, so you need not refresh, or simply use a header(Location: /); or something to

RE: [PHP] send data to a file composed of frames

2001-06-19 Thread Ray Hilton
what you mean by not being able to go back to the previous page, this is perfectly possible, unless im missing the point Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original Message- From: kaab kaoutar [mailto:[EMAIL PROTECTED]] Sent: 15 June 2001 12:25 To: [EMAIL PROTECTED] Subject

RE: [PHP] Multipe Tables, Single Query Problem

2001-06-19 Thread Ray Hilton
you need a sub select, which mysql doesn’t support... Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original Message- From: Simon Kimber [mailto:[EMAIL PROTECTED]] Sent: 06 June 2001 14:57 To: [EMAIL PROTECTED] Subject: [PHP] Multipe Tables, Single Query Problem Hi all, I have three

RE: [PHP] [php]using sendmail with php

2001-06-19 Thread Ray Hilton
its at least points you in the right direction... Im not sure if php allows you to open a pipe to another program. Ray Hilton - [EMAIL PROTECTED] http://rayh.co.uk -Original Message- From: Chris Cocuzzo [mailto:[EMAIL PROTECTED]] Sent: 19 June 2001 06:04 To: PHP General List (E-mail

[PHP] suggestions for binary data in database

2001-04-27 Thread Ray Hilton
of the database? compared to the file system? i assume its going to be quite a lot higher. DO you reckon it would be better to scrap that and store the images on the file system? Ray Hilton -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional