[PHP] mousyu

2004-05-26 Thread Curtis Pratt
skyward quash obsolescent menopause capacious bum ringside stripy ministry deleterious prepare chou buttress truism coronate summate dominion absorptive bookshelves humidify spew dogma bob cufflink cosmology guthrie sainthood emily dynamism heat levin sleepy yon addison bijection cognizant

Re: [PHP] Re: test

2004-05-26 Thread Craig
Yeah those damn email always come at same time. Well on my blocked list now. Jordi Canals [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Sherri wrote: Woah! Signed up litterally 1 minute ago and I'm already getting spam. From Advance Credit Suisse Bank Just wait. There are

Re: [PHP] Re: test

2004-05-26 Thread Oliver Hankeln
Craig wrote: Yeah those damn email always come at same time. Well on my blocked list now. This is only helping the Symptom. Why not solve the Problem? The mails you got are auto-replies. Unfortunatley I didn't find a person responsible for this [EMAIL PROTECTED] but perhaps such a person is

[PHP] nested URLs

2004-05-26 Thread Marco Bleeker
Hello, I've bumped upon a problem. I would like to send an URL as variable in the URL to a php file. But what if the URL in the variable is itself a PHP file with variables? It does work when I post them from a form. This form has only hidden fields, and looks a bit akward. Is there a way to

[PHP] Re: xml - xslt - xsl:fo - pdf

2004-05-26 Thread hboyce
Hi I'm afraid I don't know anything about the xml/xsl:fo part of the process but once you have the data in a usable form in your program you can use PDFLIB functions to create a pdf from it. I have used it very successfully. It does involve compiling libraries and you may well have to pay a

Re: [PHP] nested URLs

2004-05-26 Thread Jeroen Serpieters
On Wed, 26 May 2004, Marco Bleeker wrote: FORM NAME=meeltje ACTION=/gen/mail1.php METHOD=POST TARGET=melen INPUT TYPE=HIDDEN NAME=subject VALUE=?=$row1? INPUT TYPE=HIDDEN NAME=link INPUT TYPE=HIDDEN NAME=ln VALUE=?=$ln? /FORM Please note the double definition of the ln variable (language,

[PHP] ISP proxy caching major pain

2004-05-26 Thread strategies
Hi, I know this is a perennial problem but believe me i have googled and tried various solutions I've encounter many bb isps doing proxy caching that i cant get around. That is i want to completely avoid caching. I have tried all the header stuff ,both php headers and html headers. Nothing works.

Re: [PHP] PHP Only directory

2004-05-26 Thread Burhan Khalid
Erik Meyer wrote: Greetings, I am fairly new at this and I am going to create my first web server. I have installed PHP as the documentation says and the only question that I have is whether or not PHP can be configured on a single directory only, (example mydomain.com/php/). The server that I am

[PHP] AW: xml - xslt - xsl:fo - pdf

2004-05-26 Thread Vazquez, Juan
Thanks a lot for your help. I don't think I will buy any licenses (it is for private use); but I have foun a workaround; I can convert txt to pdf by using FPDF ( http://www.fpdf.org/ )not a 100% XML based solution but it will work. I will wait until xsl:fo conversion to PDF possible is by using

Re[2]: [PHP] Sessions simply do not work?

2004-05-26 Thread Tom Rogers
Hi, Wednesday, May 26, 2004, 2:28:58 AM, you wrote: MRW On Tue, May 25, 2004 at 07:37:47AM +0100, Peter Risdon wrote: Michael R. Wayne wrote: In my continuing efforts to actually get sessions to work, I upgraded to PHP 4.3.6 and apache 1.3.31. This did not make the slighest difference.

[PHP] Getting the name of the Class

2004-05-26 Thread Lasse Cederström
Hello! I have a problem that I hope someone can solve for me ;-) I have two classes: Class Test { Function Test() { print(“Hello Test”); } } Class MyClass extends Test { Function Debug() {

[PHP] dynamic table

2004-05-26 Thread nabil
Hiya, How can i draw a new tr AFTER FIVE td in the following loop (i want to echo the records in 5 columns width tables whatever the number of records will be fetched) .. echo 'table'; while ($myrow = mysql_fetch_array($sql)) { echo $myrow[0]; } echo '/table'; regards -- PHP General

Re[3]: [PHP] Sessions simply do not work?

2004-05-26 Thread Tom Rogers
Hi, Wednesday, May 26, 2004, 10:21:57 PM, you wrote: TR if your not using cookies you have to pass the sessionid in your form TR as a hidden variable somewhere. Or maybe I missed it :) TR -- TR regards, TR Tom ok ignore me I found it btw you can drop the ; it is not needed ?= SID? --

Re: [PHP] ISP proxy caching major pain

2004-05-26 Thread Curt Zirzow
* Thus wrote strategies ([EMAIL PROTECTED]): Hi, I know this is a perennial problem but believe me i have googled and tried various solutions I've encounter many bb isps doing proxy caching that i cant get around. That is i want to completely avoid caching. I have tried all the header stuff

Re: [PHP] dynamic table

2004-05-26 Thread Steve Douville
echo 'table'; echo 'tr'; while ($myrow = mysql_fetch_array($sql)) { echo 'td'; echo $myrow[0]; echo '/td'; } echo '/tr'; echo '/table'; You did say you wanted 5 COLUMNS, not rows, in your table... right? nabil [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hiya, How can i draw

Re: [PHP] ISP proxy caching major pain

2004-05-26 Thread strategies
* Thus wrote strategies ([EMAIL PROTECTED]): Hi, I know this is a perennial problem but believe me i have googled and tried various solutions I've encounter many bb isps doing proxy caching that i cant get around. That is i want to completely avoid caching. I have tried all the header

Re: [PHP] dynamic table

2004-05-26 Thread Richard Harb
$i = 0; while ($myrow = mysql_fetch_array($sql)) { if (++$i % 5 == 0) echo 'tr'; ... Note: if used repeatedly do not increment the $i again in the loop. HTH Richard -Original Message- From: nabil Sent: Wednesday, May 26, 2004, 2:28:28 PM Hiya, How can i draw a new

[PHP] session HTML target = _blank element

2004-05-26 Thread Hardik Doshi
Hi group, I have discovered a strange behaviour while using session. I have a page from which i am opening other pages using target = _blank element. Now when i open the child page, it doesn't get $_SESSION values. I have tried to dump variable from $_SESSION and it shows me the blank array. Does

Re: [PHP] dynamic table

2004-05-26 Thread Curt Zirzow
* Thus wrote nabil ([EMAIL PROTECTED]): Hiya, How can i draw a new tr AFTER FIVE td in the following loop (i want to echo the records in 5 columns width tables whatever the number of records will be fetched) .. echo 'table'; while ($myrow = mysql_fetch_array($sql)) { echo

[PHP] Is PHP a good language to work with images?

2004-05-26 Thread Rui Silva
Hello! I need to print an image file, but I'm having some problems. I have a handler to a printer witch I can print text correctly with the printer_write function. I can also print an image if it is in bmp format (printer_draw_bmp), however, I want to print png files. $im =

Re: [PHP] dynamic table

2004-05-26 Thread adrian murphy
Hiya, How can i draw a new tr AFTER FIVE td in the following loop (i want to echo the records in 5 columns width tables whatever the number of records will be fetched) .. echo 'table'; while ($myrow = mysql_fetch_array($sql)) { echo $myrow[0]; } echo '/table'; regards $i = 1; echo 'table

[PHP] How to check for a $_GET without throwing a Notice?

2004-05-26 Thread Brian Dunning
How do I check for the presence of an optional $_GET param without throwing a Notice: Undefined index when the param is not present? Tried all three of these, they all produce the Notice when the param is not passed: if ($_GET['id']) if ($_GET['id'] != ) if (isset $_GET['id']) -- PHP General

Re: [PHP] How to check for a $_GET without throwing a Notice?

2004-05-26 Thread Richard Davey
Hello Brian, Wednesday, May 26, 2004, 4:01:30 PM, you wrote: BD How do I check for the presence of an optional $_GET param without BD throwing a Notice: Undefined index when the param is not present? BD Tried all three of these, they all produce the Notice when the param is BD not passed: BD

Re: [PHP] dynamic table

2004-05-26 Thread adrian murphy
Hiya, How can i draw a new tr AFTER FIVE td in the following loop (i want to echo the records in 5 columns width tables whatever the number of records will be fetched) .. echo 'table'; while ($myrow = mysql_fetch_array($sql)) { echo $myrow[0]; } echo '/table'; regards

Re: [PHP] How to check for a $_GET without throwing a Notice?

2004-05-26 Thread John W. Holmes
From: Brian Dunning [EMAIL PROTECTED] How do I check for the presence of an optional $_GET param without throwing a Notice: Undefined index when the param is not present? Tried all three of these, they all produce the Notice when the param is not passed: if ($_GET['id']) if

[PHP] clearing new pages

2004-05-26 Thread michael young
Hi, a file called a.php prints hello to the browser then calls b.php which prints goodbye to the browser. the output looks like this: hello goodbye how do I clear the screen so the end results looks like this: goodbye -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] How do I use RewriteEngine for similar parameters?

2004-05-26 Thread Jake Johnson
Hello, I am trying to use the RewriteEngine for the following two lines. One has one parameter and the other has two? http://www.plutoid.com/index.php?show=semi http://www.plutoid.com/index.php?prd_id=5248show=semi Thanks in advance! -- Jake Johnson http://www.plutoid.com -- PHP General

Re: [PHP] clearing new pages

2004-05-26 Thread Jake Johnson
On Wed, May 26, 2004 at 11:20:33AM -0400, michael young wrote: Hi, a file called a.php prints hello to the browser then calls b.php which prints goodbye to the browser. the output looks like this: hello goodbye how do I clear the screen so the end results looks like this:

[PHP] combining string values

2004-05-26 Thread Tommy Atherton
hi I have a problem, I'm trying to combine the value of two strings together into a final string. For example $path = '/tmp/photos/'; $filename = 'pic1.jpg'; $finalvalue = $path + $filename; (I know that the + is not used its there for explanation only) The value for path will remain

Re: [PHP] How do I use RewriteEngine for similar parameters?

2004-05-26 Thread raditha dissanayake
Jake Johnson wrote: Hello, I am trying to use the RewriteEngine for the following two lines. One has one parameter and the other has two? You might want to try an apache group. And you might want to read the manual, particularly the examples before you post in an apache group.

Re: [PHP] combining string values

2004-05-26 Thread Miguel J. Jiménez
$finalvalue = $path.$filename; Tommy Atherton wrote: hi I have a problem, I'm trying to combine the value of two strings together into a final string. For example $path = '/tmp/photos/'; $filename = 'pic1.jpg'; $finalvalue = $path + $filename; (I know that the + is not used its there for

Re: [PHP] How do I use RewriteEngine for similar parameters?

2004-05-26 Thread Matt Matijevich
[snip] I am trying to use the RewriteEngine for the following two lines. One has one parameter and the other has two? [/snip] this is more of an apache question you could get better answers on an apache list http://httpd.apache.org/docs/misc/rewriteguide.html just check the first for prd_id

[PHP] Compiling PHP on a Itanium 64bits

2004-05-26 Thread Toze Araujo
Does anybody knows how can i compile (or get a compiled binary) for php that works on a Itanium runing on a Windows Server @ 64 bits? I try searching for a gcc version for the Itanium processor but i couln't found any avaliable, does anybody know were i can find any compiler that works?

Re: [PHP] dynamic table

2004-05-26 Thread Daniel Clark
Very slick Richard. $i = 0; while ($myrow = mysql_fetch_array($sql)) { if (++$i % 5 == 0) echo 'tr'; ... Note: if used repeatedly do not increment the $i again in the loop. HTH Richard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] How to check for a $_GET without throwing a Notice?

2004-05-26 Thread Daniel Clark
if (isset( $_GET['id'])) How do I check for the presence of an optional $_GET param without throwing a Notice: Undefined index when the param is not present? Tried all three of these, they all produce the Notice when the param is not passed: if ($_GET['id']) if ($_GET['id'] != ) if (isset

[PHP] File Upload within form

2004-05-26 Thread Tom Chubb
I am trying to design a custom form script and I've stumbled across a small problem. I want to implement a file upload into the form, but rather than posting to another file I want to refresh the form and then show that there has been a file uploaded. I know about changing the form action to:

[PHP] Re: session HTML target = _blank element

2004-05-26 Thread Torsten Roehr
Hardik Doshi [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi group, I have discovered a strange behaviour while using session. I have a page from which i am opening other pages using target = _blank element. Now when i open the child page, it doesn't get $_SESSION values. I

[PHP] PHP Portlet API / Development ?

2004-05-26 Thread [-^-!-%-
I was wondering, are any of you working on a Portlet development with PHP? Or, are you aware of any projects projects using Portlets? Any online references? Any plans for Portlet support in PHP? Please let me know. Any references would be greatly appreciated. _john =P e p i e D e s i g n s

[PHP] Re: File Upload within form

2004-05-26 Thread Torsten Roehr
Tom Chubb [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I am trying to design a custom form script and I've stumbled across a small problem. I want to implement a file upload into the form, but rather than posting to another file I want to refresh the form and then show that there

RE: [PHP] How to check for a $_GET without throwing a Notice?

2004-05-26 Thread Rick Fletcher
How do I check for the presence of an optional $_GET param without throwing a Notice: Undefined index when the param is not present? Tried all three of these, they all produce the Notice when the param is not passed: if ($_GET['id']) if ($_GET['id'] != ) if (isset $_GET['id'])

[PHP] Re: clearing new pages

2004-05-26 Thread Torsten Roehr
Michael Young [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, a file called a.php prints hello to the browser then calls b.php which prints goodbye to the browser. the output looks like this: hello goodbye how do I clear the screen so the end results looks like this:

[PHP] is_object($_SESSION['dagobertduck']);

2004-05-26 Thread Matthias H. Risse
hi: i wonder why... if(!is_object($_SESSION['xmlModel'])) echo there is no obj present, juppa**; at my place always results in TRUE or echoing the there is no.. , even if var_dump reports that $_SESSION['xmlModel'] is an object. did i screw something up or are there special policies with

[PHP] Possible Work in the Los Angeles Area...

2004-05-26 Thread Domains4Days
Hello, I hope it's OK that I put this email on this list I have some possible Web design work in the Los Angeles Area... regarding PHPMySQL. If anyone wants to: Can you call me ASAP to discuss the particulars? Thanks, Dave B. Ph. 818 763-9988 - Cel: 818 314-8900 -- Thanks - RevDave

RE: [PHP] is_object($_SESSION['dagobertduck']);

2004-05-26 Thread Justin Palmer
Hi, Make sure you include the Class file in every consecutive page that you would like to use the object in. Regards, Justin Palmer -Original Message- From: Matthias H. Risse [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 26, 2004 12:04 PM To: [EMAIL PROTECTED] Subject: [PHP]

Re: [PHP] is_object($_SESSION['dagobertduck']);

2004-05-26 Thread John W. Holmes
From: Justin Palmer [EMAIL PROTECTED] Make sure you include the Class file in every consecutive page that you would like to use the object in. and include it before session_start(). Although if var_dump() is showing it's an object, you're question of why is_object() fails is still valid.

RE: [PHP] Re: clearing new pages

2004-05-26 Thread Rick Fletcher
Hi, a file called a.php prints hello to the browser then calls b.php which prints goodbye to the browser. the output looks like this: hello goodbye how do I clear the screen so the end results looks like this: a.php: echo 'hello'; header('location: b.php'); exit;

Re: [PHP] How to check for a $_GET without throwing a Notice?

2004-05-26 Thread Tyler Replogle
aslo you could change it to something else like this $_GET['id'] = $id; if (!$id) { // whatever you want to happen put here } From: Daniel Clark [EMAIL PROTECTED] Reply-To: Daniel Clark [EMAIL PROTECTED] To: Brian Dunning [EMAIL PROTECTED],[EMAIL PROTECTED] [EMAIL PROTECTED] Subject: Re: [PHP]

RE: [PHP] Possible Work in the Los Angeles Area...

2004-05-26 Thread Tyler Replogle
hey, I'm not going to call you, but we can talk over the net with email. I also have msn ([EMAIL PROTECTED]) and aim (catim2005). That goes for anyone that want to talk. O and if see my buddy icon on aim don't be scared. From: Domains4Days [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP]

[PHP] Re: clearing new pages

2004-05-26 Thread John Kaspar
I put this at the top of long pages, $processing = span id='processing' processing, please wait ... /span ; echo $processing; flush(); Then put this at the bottom, $hide = script language='javascript' if (document.layers) { processing.visibility='hide' } else if

RE: [PHP] Re: clearing new pages

2004-05-26 Thread Tyler Replogle
hey, you could use some jave script there a.php: echo 'hello'; echoscript language=\Javascript\ window.location = 'http://www.yourwebsite.com/b.php'; From: Rick Fletcher [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: [PHP] Re: clearing new pages Date: Wed, 26 May 2004 12:52:55 -0700

[PHP] PHP segfaults, any ideas?

2004-05-26 Thread Michal Migurski
Hi - I'm having some PHP segfault issues, and I can't seem to figure out what's wrong. Kinda frustrating :) The script i'm using to test is really simple, and as I tweak it to figure out the failure point, I'm finding that it /seems/ to break more reliably based on the presence of code **after**

[PHP] Delete Multiple Records From Checkboxes

2004-05-26 Thread Albert Padley
I've checked the archives and several other sources, but still can't seem to make this work. I have a form with checkboxes to designate records to be deleted from the mysql database. The pertinent form code is: input type=\checkbox\ name=\del[]\ value=\ . $row['id'] . \ The processing code is:

Re: [PHP] Delete Multiple Records From Checkboxes

2004-05-26 Thread Tom Rogers
Hi, Thursday, May 27, 2004, 11:34:03 AM, you wrote: AP I've checked the archives and several other sources, but still can't AP seem to make this work. AP I have a form with checkboxes to designate records to be deleted from AP the mysql database. The pertinent form code is: AP input

Re: [PHP] Delete Multiple Records From Checkboxes

2004-05-26 Thread John W. Holmes
Albert Padley wrote: I've checked the archives and several other sources, but still can't seem to make this work. I have a form with checkboxes to designate records to be deleted from the mysql database. The pertinent form code is: input type=\checkbox\ name=\del[]\ value=\ . $row['id'] . \

[PHP] Putting an image or logo on another image.

2004-05-26 Thread Philip
THIS ASSUMES THAT THE IMAGE WAS UPLOADED OK // ADD A FILE NAME TO THE UPLOADED FILE. $pageDestinationFile=$pageGalleryPath/image_.$pagePicNum._temp.jpg; // LETS MOVE THE IMAGE OUT OF THE TEMP DIR. move_uploaded_file

Re: [PHP] Delete Multiple Records From Checkboxes

2004-05-26 Thread Albert Padley
On May 26, 2004, at 8:01 PM, John W. Holmes wrote: Albert Padley wrote: I've checked the archives and several other sources, but still can't seem to make this work. I have a form with checkboxes to designate records to be deleted from the mysql database. The pertinent form code is: input

[PHP] running php even without .php extenstion, how can i do this?

2004-05-26 Thread Louie Miranda
I have seen similar sites that runs php. but without the extension. like: example.com/hello/great?ID=19 How can i do this? Run the php even without the .php extension -- - Louie Miranda http://www.axishift.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Delete Multiple Records From Checkboxes

2004-05-26 Thread Albert Padley
On May 26, 2004, at 7:55 PM, Tom Rogers wrote: Hi, Thursday, May 27, 2004, 11:34:03 AM, you wrote: AP I've checked the archives and several other sources, but still can't AP seem to make this work. AP I have a form with checkboxes to designate records to be deleted from AP the mysql database.

Re: [PHP] Putting an image or logo on another image.

2004-05-26 Thread Curt Zirzow
* Thus wrote Philip ([EMAIL PROTECTED]): Any Ideas? Well, I'd have to say that dogs make better pets than cats do, mainly because they provide much more companionship than cats... Curt -- I used to think I was indecisive, but now I'm not so sure. -- PHP General Mailing List

Re: [PHP] Delete Multiple Records From Checkboxes

2004-05-26 Thread Curt Zirzow
* Thus wrote Albert Padley ([EMAIL PROTECTED]): input type=\checkbox\ name=\del[]\ value=\ . $row['id'] . \ The processing code is: if (count($del) 0){ for ($i=0;$icount($del);$i++){ $query = DELETE FROM ref_events_reg WHERE id = '$del[$i]'; } } I think

Re: [PHP] Delete Multiple Records From Checkboxes

2004-05-26 Thread Albert Padley
On May 26, 2004, at 11:16 PM, Curt Zirzow wrote: * Thus wrote Albert Padley ([EMAIL PROTECTED]): input type=\checkbox\ name=\del[]\ value=\ . $row['id'] . \ The processing code is: if (count($del) 0){ for ($i=0;$icount($del);$i++){ $query = DELETE FROM

Re: [PHP] running php even without .php extenstion, how can i do this?

2004-05-26 Thread Curt Zirzow
* Thus wrote Louie Miranda ([EMAIL PROTECTED]): I have seen similar sites that runs php. but without the extension. like: example.com/hello/great?ID=19 How can i do this? Run the php even without the .php extension if you add a .htaccess file in the /hello/ directory with something like

Re: [PHP] Delete Multiple Records From Checkboxes

2004-05-26 Thread Albert Padley
On May 26, 2004, at 11:17 PM, Albert Padley wrote: On May 26, 2004, at 11:16 PM, Curt Zirzow wrote: * Thus wrote Albert Padley ([EMAIL PROTECTED]): input type=\checkbox\ name=\del[]\ value=\ . $row['id'] . \ The processing code is: if (count($del) 0){ for ($i=0;$icount($del);$i++){

Re: [PHP] running php even without .php extenstion, how can i do this?

2004-05-26 Thread Louie Miranda
I got what you mean, but can we do this on the whole directory instead by files? Like for example the whole / directory and /subdirectory/ so i wont be doing that editing every files? The example you gave is working, btw. -- - Louie Miranda http://www.axishift.com - Original Message -