[PHP] PHP + javascript

2001-05-01 Thread Ide, Jim
Hi - I want to use javascript to validate some fields on a form. The javascript code will take the value the user typed into the form and search for it in an array. If the value is found in the array, then the value is ok, otherwise an alert() message will be displayed. The amount of data in

[PHP] url question

2001-04-10 Thread Ide, Jim
I have a php script that browses a database table. You can page through the database table by clicking these links: http://localhost/browse.php?action=first http://localhost/browse.php?action=prev http://localhost/browse.php?action=next http://localhost/browse.php?action=last When you click

RE: [PHP] how do i get a variable type? - not that simple

2001-03-19 Thread Ide, Jim
These are the functions I use to determine if a string value is a valid integer, real, date, etc. Hope this helps. ps - please let me know if you find any errors. thanx. ?php function IsValidBoolean($p) { if ( isset($p) ) { if ((strtolower($p) == "true") or

[PHP] Detect if user has changed form data

2001-03-13 Thread Ide, Jim
Is there an easy way to detect if a user has changed the values in the fields of an HTML form? I want to be able to check this during the onUnload event and warn the user that he/she has not clicked the "Save" button to save changes to the form fields. The only way I can see to do this is to

[PHP] Best browser

2001-02-27 Thread Ide, Jim
I am developing a PHP application for a client that allows users at remote locations to access and update a database. I would like to standardize on one www browser so that the help desk people only have to be knowledgeable about one browser. The users all have MS Win 95, 98, or NT. The

[PHP] How do I request a new feature?

2001-02-22 Thread Ide, Jim
Hi - How can/should I contact the developers of PHP to request that they add a new feature to PHP? Thanks - Jim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

[PHP] Get name of current function

2001-02-20 Thread Ide, Jim
Hi - Is there some way I can get the name of the currently executing function? For example: ?php function MyFunction () { echo "The currently executing function is: " . here ; } MyFunction(); ? I want this to produce: The currently executing function is: MyFunction() Is