[PHP] imagefrompng() question

2006-05-15 Thread D A GERM
I'm having difficulty displaying text after imagefrompng(). I'm using PEARS's Image_Barcode to displa a barcode and trying to wrap imagefrompng() around it. I am able to display the barcode properly but not the rest of my document (a mix a text and other images). Is there a proper heading I

Re: [PHP] html forms in php

2005-09-15 Thread D A GERM
Here's some javascript I use for such instances: [CODE] if (myForm.hidWhich.value == "delete") { var verify = prompt("You are about to delete this entry \n" + " \n \n" + "To delete this entry you must type this phrase in the prompt and click

Re: [PHP] incrementing in a for loop

2005-09-12 Thread D A GERM
this worked for me: [CODE] for ($myLoop = 0; $myLoop < 100; $myLoop= $myLoop + 5) { print "my loop: $myLoop"; } [/CODE] Peppy wrote: I've searched online and am unable to find how to increment by more than one in a for loop.

Re: [PHP] Re: optional argument when creating a function

2005-08-17 Thread D A GERM
Thank you everyone for your help. I tried this and it worked with throwing any errors. function doEmail($username, $link = null) Matthew Weier O'Phinney wrote: * D A GERM <[EMAIL PROTECTED]>: I'm throwing a warning on a function I created. I thought a & in front

[PHP] optional argument when creating a function

2005-08-17 Thread D A GERM
I'm throwing a warning on a function I created. I thought a & in front of the argument was supposed to make it optional. Is there something else I need to do make that argument optional? //I simplified the code function doEmail($username, &$link) { if (isset($link)) { print "$link $user

Re: [PHP] Finding what links on a page have been clicked

2005-06-29 Thread D A GERM
Unfortunately I do not have access to those logs. Richard Davey wrote: Hello, Wednesday, June 29, 2005, 1:11:51 PM, you wrote: DAG> I am trying to find a way to log what links have been clicked and DAG> dump the results into a database. Couldn't you parse this information out of your site lo

[PHP] Finding what links on a page have been clicked

2005-06-29 Thread D A GERM
I am trying to find a way to log what links have been clicked and dump the results into a database. Does anyone have any suggestions? thank you in advance -- "Well then what am I supposed to do with all my creative ideas- take a bath and wash myself with them? 'Cause that is what soap is for"

[PHP] Oracle rpm?

2005-03-28 Thread D A GERM
Is there an rpm to install the oracle compnents for version 4.3.4 php? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php command

2005-03-23 Thread D A GERM
is there a command that will allow me to connect to another box and execute commands? for instance, I want to create an automated php script that will connect to a unix box and run a series of commands. I believe that ssh2_exec() and ssh2_shell() are not supported in the 4.3.4 version of php I