Re: [PHP] CHAT about PHP

2003-08-20 Thread P.Agenbag
Sites like these will drive me to ASP... On Wed, 2003-08-20 at 17:39, David Otton wrote: On 20 Aug 2003 11:31:02 -0400, you wrote: On Wed, 2003-08-20 at 11:11, Curt Zirzow wrote: * Thus wrote Damian Brown ([EMAIL PROTECTED]): www.phpexpert.org Programming Help and General

[PHP] Image upload and scaling

2002-03-11 Thread P.Agenbag
Hi, I am trying to make a util whereby ppl can upload their own images to my server for me to automatically display them. The below code works fine, but I have the following problem. It only works fne if everyone complies to a standard of a set width and height for the image. This is not always

[PHP] Mail function

2001-09-30 Thread P.Agenbag
Hi, I'm not sure this is the right list to post this, and i'm not even sure if there is already a solution to this problem, in which case, sorry... Ok, my problem: PHP has (as you all know) a mail() function which is very handy to send mail to people. Now, with the advent and subsequent ease of

[PHP] Putting variables in a string

2001-08-28 Thread P.Agenbag
I am trying to make a string that will contain variables. The resulting string will be a sql query string and must look something like update $table_name set key='$key' , next='$next' where id = $id Since the variable name is the same as the key name, I tried to generate this string with a

[PHP] Generating Variables

2001-08-27 Thread P.Agenbag
Hi I am trying to auto generate some sql strings. The resulting string should look like this: update $table_name set var1='$var1', var2='$var2' . where id=$id I used a foreach loop to get the keys from a table and in each foreach loop I tried the following. foreach($myrow as