Re: [PHP] href links not working in XP

2005-12-10 Thread David Bevan
Would it be possible to see your code for this? I have had similar problems within firefox but never within IE. Regards, David Marlin Unruh <[EMAIL PROTECTED]> wrote: I apologize because I posted this question earlier under Re: [PHP] href difference between OS's, and am still struggl

Re: [PHP] pass variable from vbscript to php

2005-04-05 Thread David Bevan
it > accurately. You are > assuming that they can't change document.cookie to > userid=somebody_elses_name. That assumption only > holds true if the > person in question doesn't know how to use a > browser. > > The situation you're describing suggests a strong

Re: [PHP] What's the going rate for making websites ?

2005-04-05 Thread David Bevan
Hi Rene, I am becoming a little bit concerned about some of the advice you have been getting about setting a rate for your work. Don't get me wrong, there is nothing wrong with charging by the hour, but a lot of times one of two things happen, either you begin to resent your customer or they begi

Re: [PHP] pass variable from vbscript to php

2005-04-05 Thread David Bevan
Another way you can get around passing info to the server is to use hidden fields and make the entire page into a form with each link in turn submitting the form to the target script. You avoid putting sensitive info into the address bar and you can take advantage of header encryption if you need

[PHP] Best way to validate a date

2005-03-09 Thread David Bevan
Hi all, I'm looking to validate a date submitted through a form and I cannot decide which would be the best way to do it. The form of the date needs to be: -MM-DD. At the moment I'm torn between using a regex, something like: 20[\d][\d]-[0-1][\d]-[0-3][\d] or using the checkdate() function.

Re: [PHP] rounding down

2004-11-26 Thread David Bevan
whole number, if needs to be rounded down. can anyone help me? Searching on the php.net site in the manual is/can be your friend. You want the floor() function. Take a look at: http://ca3.php.net/manual/en/function.floor.php -- Regards, David Bevan We could learn a lot from crayons: some are

Re: [PHP] RE: [firebird-php] auto increment last insert

2004-11-24 Thread David Bevan
functions correct and various other things. We have just learned to look things up before asking for help. -- Regards, David Bevan We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colorsbut they all exist very n

Re: [PHP] How to $_POST from a grid

2004-11-24 Thread David Bevan
ll need to add a checkbox or radio button group in order to have the primaryID values sent to the action page. HTH -- Regards, David Bevan We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colorsbut they all

Re: [PHP] How to $_POST from a grid

2004-11-24 Thread David Bevan
Since the grid only is echos of the recordset fields, > how does it know the correct PrimaryID to send when I > hit the submit button. I'm thinking this is perhaps my > problem. Would it be possible to see the code that generates the grid? Both the php and HTML. -- Regards, David Bevan

Re: [PHP] Question on query string

2004-11-16 Thread David Bevan
27;. You can see what all the ASCII codes are here: http://www.asciitable.com/ HTH -- Regards, David Bevan We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colorsbut they all exist very nicely in the same box. http:

Re: [PHP] Database search logic question

2004-11-15 Thread David Bevan
query string sent as POST vars but don't know how to get those out of the array, I would say you have some RTFMing to do, the same would go for sending the users to your results page AND ( you can do both POST and GET vars for a single page) adding a querystring to the url so that the user c

[PHP] [Newbie Guide] For the benefit of new members

2004-11-01 Thread David Bevan
ese guidelines will ensure that you get effective responses from the list members. Otherwise, your questions might not be answered. Hope you have a good time programming with PHP. -- Regards, David Bevan We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some

Re: [PHP] GUI editor for php?

2004-11-01 Thread David Bevan
On November 1, 2004 17:19, Andy B wrote: > Hi. > > Is there any GUI editors out there for php? if so does anybody know of a > good one that doesnt cost a ton of money?? Try taking a look at: http://www.thelinuxconsultancy.co.uk/phpeditors/ -- Regards, David Bevan We could lear

Re: [PHP] Referencing a "constant" class variable

2004-10-06 Thread David Bevan
ch as: $MyEnums = array( "is" => "This", "at" => "That", "er" => "Other" ); Then you can refer to them like: echo($MyEnums["is"]); // Prints "This" Just an idea. HTH -- Regards, D

Re: [PHP] Re: PHP (anti) crash policy?

2004-10-03 Thread David Bevan
er of data handling functions would benefit from > such a function. > And it'd make PHP more robust. Olaf, PHP is an open source language is it not?  Since you're so smart why don't YOU write the code? -- Regards, David Bevan http://www.getanyideas.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Nubie scripting question - Newbie Guide for the benefit of new members

2004-09-19 Thread David Bevan
On Sun, 2004-09-19 at 11:36, revDAVE wrote: >Q: here is what I am unclear of: since I do not know PhP - how do I get the >main display page to read this part of the URL? > > - how do I write this? > > thanks in advance for your help Since you do not know PhP, how about picking up a book or try

Re: [PHP] sharing records with assigned users

2004-08-26 Thread David Bevan
On Thu, 2004-08-26 at 13:49, PHP Junkie wrote: > Ave, > > Jay.. > Firstly thanks a lot for the tips. I appreciate that and in fact I do try to > go methodically in most cases, even using the pen & paper to create my flow > charts and diagrams of what I'm about to program. I actually love that > me

Re: [PHP] Another Help

2004-08-25 Thread David Bevan
On Thu, 2004-08-26 at 01:27, Syed Ghouse wrote: > Hi > > Also pls tell me how to extract the href value of the code below > > http://www.google.com";> > > > > > > i m weak in regular expression in php and tell me how to learn easily. > > Regards > Syed Is it just that you're lazy and don'

Re: [PHP] OO Question for PHP4

2004-08-11 Thread David Bevan
On Wed, 2004-08-11 at 11:14, Jed R. Brubaker wrote: > Hi all. As the subject suggests, I am using PHP4 and am having something > going on that I don't think should be. > > Presume the following code > class Foo { > function Foo () { > return "Bar"; > } > } > $foo = new Foo; > echo

Re: [PHP] Re: [Q] How to setup Dreamweaver so that PHP scripts are executed?

2004-08-06 Thread David Bevan
On Fri, 2004-08-06 at 22:07, Michael T. Peterson wrote: > Thanks to both of you, but it is still not working. I've configured the site > (both local and testing) correctly, but what gets passed to IExplore is the > URL below: > > C:\Program Files\Apache > Group\Apache\htdocs\northwest_steelhea

Re: [PHP] [Q] How to setup Dreamweaver so that PHP scripts are executed?

2004-08-06 Thread David Bevan
On Fri, 2004-08-06 at 17:17, Michael T. Peterson wrote: > Hi, > > I know this must be really obvious to many of you, but I have been unable to > configure DW (using [preferences] or [site->edit]) so that it will execute a > php script from a tag. When the submit button is > clicked the php file

RE: [PHP] Slideshow using PHP

2004-07-08 Thread David Bevan
about using Flash might be the way to go as there is already a template if you choose File>New From Template within Flash, but I'm not sure why you would want to weigh an app like that down with constant communication to the server. My 2c at least. Regards, David Bevan GetAnyIdeas Web

[PHP] Help installing on Fedora 2

2004-07-02 Thread David Bevan
x27;t seem to figure out what went wrong with PHP. Has anyone had similar problems or know where I can look for documentation specific to the Fedora flavor of Linux? I've looked/gone through the docs on the PHP and Redhat sites but I must be missing something. Any help would be greatly appre

RE: [PHP] mod_rewrite

2004-07-01 Thread David Bevan
Hi Pete, Check out the documentation on the Apache site: http://httpd.apache.org/docs-2.1/mod/mod_rewrite.html They also have a URL Rewriting Guide: http://httpd.apache.org/docs-2.1/misc/rewriteguide.html Hope this helps. Regards, David -Original Message- From: pete M [mailto:[EMA

RE: [PHP] disguise as static content

2004-06-29 Thread David Bevan
Hi Florin, Another trick if you will, to fool search engines would be to use mod_rewrite, provided you are using apache. Check out the documentation on the apache site: http://httpd.apache.org/docs-2.1/mod/mod_rewrite.html Hope this helps. Regards, David -Original Message- From:

RE: [PHP] is there any application , by using i can produce php exe files in windows ?

2004-06-20 Thread David Bevan
Hi Ravi, Not that I'm that far through the book yet, but Professional PHP4 by Apress (ISBN: 1590592484) has a chapter about "Non-Web PHP Programming" that you may want to check out. Regards, David Bevan GetAnyIdeas Web Design P. 416.452.9410 F. 416.570.4529 E. [EMAIL PRO

RE: [PHP] Free news feeds

2004-06-10 Thread David Bevan
Hi Tim, Have you tried a google search? Try: http://www.google.com/search?num=100&hl=en&lr=&ie=UTF-8&q=free+news+feed s+pharmaceutical+medical&btnG=Search There might be something useful to you. Regards, David Bevan GetAnyIdeas Web Design P. 416.452.9410 F. 416.570.4529