RE: [PHP] Rapid application development

2006-10-03 Thread Jesse Castro
I need your feedback in this What is the best RAD (Rapid application development) do you use for PHP to develop an *advance* application in few days or weeks ? I like programming but one this that I hate is the first stage of programming when you start creating the basic code (db

RE: [PHP] help with adding

2005-02-25 Thread Jesse Castro
-Original Message- From: Jay Fitzgerald [mailto:[EMAIL PROTECTED] Sent: Thursday, February 24, 2005 9:39 AM To: php-general@lists.php.net Subject: [PHP] help with adding I have messed with this for a couple of days and cant get it right. Maybe I need sleep :-) The

RE: [PHP] Convert a string to ASCII

2005-02-11 Thread Jesse Castro
-Original Message- From: Shaun [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 4:44 PM To: php-general@lists.php.net Subject: Re: [PHP] Convert a string to ASCII Jay Blanchard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [snip] Is it possible to

RE: [PHP] Favorite Linux Distribution

2005-02-08 Thread Jesse Castro
-Original Message- From: The Disguised Jedi [mailto:[EMAIL PROTECTED] Sent: Monday, February 07, 2005 5:25 PM To: PHP General List; users@httpd.apache.org Subject: [PHP] Favorite Linux Distribution Hello all - I've been a list member for a while, helped out some people, and

RE: [PHP] On large application organization [long and possibly boring]

2005-01-07 Thread Jesse Castro
[snip] You're wrong. The include() and require() statements are only evaluated when they are reached in your application code, so there is a big difference between your two examples. In you use the second example the code will only be included by PHP if the application logic enters the case

RE: [PHP] On large application organization [long and possibly boring]

2005-01-07 Thread Jesse Castro
[snip] You're wrong. The include() and require() statements are only evaluated when they are reached in your application code, so there is a big difference between your two examples. In you use the second example the code will only be included by PHP if the application logic enters the case

RE: [PHP] PHP Exploit via phpBB?

2004-12-22 Thread Jesse Castro
snip I haven't fully researched it yet, but our domains were just hacked, and from the looks of it, the attack came in thru phpBB. This morning, around 9:00am, I upgraded our webserver to php v4.3.10 from v4.3.9 due to potential security risks, and at 11:30 it looks as if the attack started.

RE: [PHP] Text Parser

2004-11-24 Thread Jesse Castro
[snip] I need to get a procedure able to do this: 1) Receive a string. For example: name age address location. 2) Process that string, inserting comas between the words in the middle. For example: name,age,address,location. It´s important that the comas must be inserted after the first word,

RE: [PHP] file upload

2004-10-26 Thread Jesse Castro
Ahh, if you *have* to push the data (which you obviously do) and the authentication site has no other authentication methods then you have to POST the file with PHP. It can be done, there are many classes for it, I can't recommend any specific class, but I'm sure someone else here could.

RE: [PHP] include()ing into a variable

2004-10-14 Thread Jesse Castro
[snip] $a=include(th-file.php); [/snip] Mag, I have never seen this approach before. This is the way I would do something like that. $file=./th-file.php; if (!($fp = fopen($file,r))){ echo Could not open .$file; exit(); } $a = fread($fp, filesize($file)); fclose($fp); See

RE: [PHP] alphabetic comparison

2004-09-30 Thread Jesse Castro
[snip] Is there any way you can use the numerical comparisons or to see if one word comes first alphabetically to another ? what can I use to see if oranges comes after or before apples alphabetically for instance. [/snip] **mumble grumble** You should just try dinky questions like this out

RE: [PHP] deleting directories

2004-09-21 Thread Jesse Castro
rm -r directoryname will recursively remove the directory and everything in it -Original Message- From: Afan Pasalic [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 21, 2004 12:31 PM To: php-general Subject: [PHP] deleting directories I have directory with huge number of directories

RE: [PHP] External Files (take 2)

2004-09-20 Thread Jesse Castro
[snip] So i would not need to use ?PHP / ? correct... Also as to the other question I asked: WHat should I use in the other file? the complete connection code or just the values as variables? [/snip] Something like this: Main file: ?php include(includeFile.php); // do lots of stuff ?

RE: [PHP] Barcodes ?

2004-09-10 Thread Jesse Castro
[snip] Hi List, Anyone have any pointers to examples of Code 39 barcode generation using php please. Thanks for any help Dave Carrera [/snip] STFW http://www.aditus.nu/jpgraph/jpg_barcodes.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] ftp_ssl_connect()

2004-08-24 Thread Jesse Castro
Does ftp_ssl_connect() support Explicit SSL, Implicit SSL, or both? Thanks, -jess-

[PHP] Re:[PHP] Open all subdirectories in a directory

2004-08-16 Thread Jesse Castro
[snip] Can anybody help me to open all subdirectories in a directory, I used is_dir() to check whether it is a dir, and if yes, I recursively called it with the new dir name. But all subdirectories are not open the recursion is not working for more than 1 level. I tested it in windows server.