RE: [PHP] Delete an upload

2006-07-17 Thread mike bellerby
You unlink it. Mike Message Received: Jul 17 2006, 04:26 PM From: Benjamin Adams [EMAIL PROTECTED] To: php php php-general@lists.php.net Cc: Subject: [PHP] Delete an upload I created a form where users can upload. I'm working on the section

Re: [PHP] How do I make a HTML tree for a set of nodes?

2006-06-04 Thread Mike Bellerby
You could do it by dynamically generating an image. Mike Niels wrote: On Sunday 04 June 2006 15:30, tedd wrote: [snip] You can dynamically generate a table and place text (and/or color) the cells that are nodes -- that would be my approach. You would need to know the width and depth of

RE: [PHP] Text between two tags

2005-11-10 Thread mike bellerby
try explode using td align=right class=yfnc_tabledata1 then on array index[1] explode /td your answer will then be in index[0] Hope this helps Mike Message Received: Nov 10 2005, 03:01 PM From: Normmy2k [EMAIL PROTECTED] To:

Re: [PHP] array simple question

2005-09-13 Thread Mike Bellerby
If you want to print the keys for all the arrays in the main array then use allkeys. matt VanDeWalle wrote: hello, I have a simple question, not really a problem this time. I know that the function print_r() will print an array but if that array has sub-arrays it prints everything and if

[PHP] GD library

2005-07-09 Thread Mike Bellerby
Where is the best place to get php_gd2.php Thanks Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] GD library

2005-07-09 Thread Mike Bellerby
Where is the best place to get php_gd2.dll Thanks Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] using require

2005-05-28 Thread Mike Bellerby
If your php is using a permanant connection then it will be the same connection otherwise it will be a new connection as the connection will be droped at the end of the thread. As I understand it anyway!! Hope this helps! Mike Cima wrote: hi all, i have my web site working something