Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Raphael Martins
Use ?php phpinfo()? instead of ?phpinfo()?, or try to add some space after the ? . The php usually comes with the short_tags directive turned off. Good Luck Scott Bounds wrote: Hello all. I seem to be having a terrible tim ewith something that is so simple it makes me sick. I have a server

[PHP] IMPORTANT: PHP does NOT cause browser issues.

2007-01-11 Thread Raphael Martins
Hi everybody. Due some recent messages in this list and other CSS/XHTML list, I´ve decided to post this to clarify a very common question: PHP is compatible with ALL browsers. Why? Because PHP runs at the server, aside from the browser. The only thing the browser will see is the response (in

[PHP] Prevent XSS using DOM Extension and/or SimpleXML

2006-11-14 Thread Raphael Martins
Hi there! I´m building a form validator using PHP and JS. It´s working fine by now, but I want to make a little improvement. Here is how its working now: 1. The user fill the form. Every time he leaves the field, the JS code match the value against a regexp to validate. 2. When the user

Re: [PHP] Mysql strategy

2006-11-14 Thread Raphael Martins
Larry Garfield escreveu: On Monday 13 November 2006 17:51, Chris wrote: It's not going to make a great deal of difference if you do the processing in the MySQL or the PHP, in this case it's basically the same operation in each. I suspect that efficiently recreating the LIKE functionality

[PHP] DOM Validation using PHP

2006-11-13 Thread Raphael Martins
Hi there! I´m building a form validator using PHP and JS. It´s working fine by now, but I want to make a little improvement. Here is how its working now: 1. The user fill the form. Every time he leaves the field, the JS code match the value against a regexp to validate. 2. When the

[PHP] Permanent Links - Blog

2006-11-08 Thread Raphael Martins
Hi, How do I implement that http://myhost/blog/date/of/post/name-of-the-post; thing, instead of http://myhost/blog/view.php?id=id-of-the-post; ? I´ve seen this in many blogs, but it´s easy to implement? See it in action at wikipedia, blogger blogs, simplebits http://www.simplebits.com.

[PHP] Permanent Links - Blog

2006-11-08 Thread Raphael Martins
Hi, How do I implement that http://myhost/blog/date/of/post/name-of-the-post; thing, instead of http://myhost/blog/view.php?id=id-of-the-post; ? I´ve seen this in many blogs, but it´s easy to implement? See it in action at wikipedia, blogger blogs, simplebits http://www.simplebits.com. Both

Re: [PHP] FTP

2006-10-08 Thread Raphael Martins
samedi 07 octobre 2006 à 20:50 -0300, Raphael Martins a écrit : Hi, When I send files via FTP, the file size is limited to the php.ini max upload value? Thank you! No, unless you handle the FTP server with a PHP script. php.ini only limits the size of files handled by PHP (generally via HTTP

[PHP] FTP

2006-10-07 Thread Raphael Martins
Hi, When I send files via FTP, the file size is limited to the php.ini max upload value? Thank you!

[PHP] FTP

2006-10-06 Thread Raphael Martins
Hi, I need to send large files over my website...I was wondering if I could do this using the PHP FTP Commands. The files will be larger then the MAX_UPLOAD_SIZE in php.ini. Is that possible? Or should I use a regular FTP program? Thank you!