Re: [PHP] WWE in Stamford, CT needs a kick ass PHP Developer!

2007-04-11 Thread JM Guillermin
skill involved with becoming proficient in using Dreamweaver . [/snip] ROFLMMFAO I think I peed my pants :B me too :)) jm -- .. | InterJinn Application Framework - http://www.interjinn.com

Re: [PHP] Novice PHP Question - Listing Folder Contents

2007-04-10 Thread JM Guillermin
http://www.php.net/readdir ?php if ($handle = opendir('.')) { while (false !== ($file = readdir($handle))) { if ($file != . $file != ..) { echo $file\n; } } closedir($handle); } ? cheers jmg - Original Message - From: revDAVE [EMAIL PROTECTED] To:

Re: [PHP] Submitting as POST. Why?

2007-04-07 Thread JM Guillermin
Maybe this could help... GET http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.3 POST http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.5 URI http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.2.1 jm - Original Message - From: barophobia [EMAIL PROTECTED

Re: [PHP] SimpleXML end of element/tag error

2007-04-05 Thread JM Guillermin
And with : foreach ($xml as $cs) { . } ?? jm - Original Message - From: Don Don [EMAIL PROTECTED] To: PHP List php-general@lists.php.net Sent: Thursday, April 05, 2007 10:32 AM Subject: [PHP] SimpleXML end of element/tag error I am using simple xml to parse an xml file

Re: [PHP] DOMDocument::schemaValidate() - libxml_get_errors()

2007-04-05 Thread JM Guillermin
If the error occure after the line 65535, libxml_get_errors() returns 65535. Maybe this can help you Sébastien : Class: LibXMLError Properties (Read-Only): (int) level (int) code (int) column (string) message (string) file (int) line jm

Re: [PHP] DOMDocument::schemaValidate() - libxml_get_errors()

2007-04-05 Thread JM Guillermin
It seems to be something like that, maybe try to find additional informations on the LibXMLError class. good luck. jm - Original Message - From: Sébastien WENSKE [EMAIL PROTECTED] To: JM Guillermin [EMAIL PROTECTED]; Tijnema ! [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent

[PHP] Social Networking

2005-10-13 Thread JM
Hi all, I've been looking for social networking software like you see on myspace.comhttp://myspace.comor hi5.com http://hi5.com. Does anyone know of any? I'd like to check out some freeware first. TIA. JM

[PHP] Re: php-windows Digest 19 Aug 2005 19:00:33 -0000 Issue 2754

2005-08-19 Thread JM
You are talking about a few issues. 1. turn on / uncomment the extensions in the php.ini (use phpinfo.php to figure out which php.ini you are using) 2. 404 means the requested doc or url is wrong or doesnt exist. this isnt your webserver or php's fault. fix the url. 3. make sure you tell IIS to

[PHP] Question about Windows Installation

2005-08-19 Thread JM
after you make changes restart iis. btw apache works fine in this scenario too. if the extensions still dont work then look for the dll's make sure they are even installed for php/webserver to use On 8/19/05, JM [EMAIL PROTECTED] wrote: You are talking about a few issues. 1. turn

[PHP] Generating Reports

2005-08-15 Thread JM
Hi all, I'm wondering what report generators or routines are out there. I've not found anything worthwhile yet. What do you all use? I have a couple sql database tables I'm outputting into a tabular format. I'd like to find a system. My biggest issue is that some reports go off the screen and

[PHP] Report Generator

2005-08-08 Thread JM
I need to make a report engine using a couple of mySQL tables. What I'm working on is a add/remove select-option list with the column names so the user can customize their own report. They can add/remove the columns in the order that they want, then order by a column asc/desc. The report page will

[PHP] Re: WAMP Performance Tuning

2005-08-04 Thread JM
I'm quoting out a system for a Windows/Apache/PHP/MySQL database-driven web application I've written. I've never gotten too deep into determining what is the actual performance bottleneck in this scenario. Is it the disk or the RAM? I expect about 75-100 users during business hours. 90% will be

[PHP] Date Handling Recommendations

2005-07-21 Thread JM
Hi all, I need to manage some records with dates. mmdd I'm putting select options breaking the three up in numeric pull downs. no problem gathering and storing the data in my mysql db as integers then posting them for existing records etc. i know their is a datetime datatype but it doesnt

Re: [PHP] Date Handling Recommendations

2005-07-21 Thread JM
thanks all. i just made the changes and its working smooth. i remember having a bunch of drama trying to use DATE data type...oh well, i just needed something to get me off my butt haha thanks again On 7/21/05, Philip Hallstrom [EMAIL PROTECTED] wrote: Hi all, I need to manage some records

[PHP] addslashes/stripslashes issue

2005-05-27 Thread JM
Hi all, Ok here is what I need help with: $var = i like fi'sh; I'm able to addslashes(gather the data from a form), submit into the database, stripslashes(retrieve it). My problem is when I display it in a input type=text form the single quote is causing a truncation. input type=text

[PHP] Valid email address syntax script?

2005-05-04 Thread JM
Does anyone have a nice email address syntax checking script they'd like to share? Regular expression-based anyone? TIA. -- J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mysqli grrrr

2005-05-02 Thread JM
Ok who's using mysqli? I'm moving over to the mysqli OO method. I'm trying to perform an insert and having difficulty. $sql = INSERT INTO USERS (record_id, name_first, name_last) VALUES (1, 'George', 'Dubbuyah'); $mysqli-query($sql); I have a followup SELECT that prints the rowcount so I can

[PHP] Re: mysqli grrrr

2005-05-02 Thread JM
nevermind I got it :-/ My DATETIME was making me pay for something I did in a past life :P John On 5/2/05, JM [EMAIL PROTECTED] wrote: Ok who's using mysqli? I'm moving over to the mysqli OO method. I'm trying to perform an insert and having difficulty. $sql = INSERT INTO USERS (record_id

[PHP] bargraph gd not working

2004-12-13 Thread jm
Hi guys: I'm using php5 on winxp with IIS. I'm trying to run a simple bar graph demo found it on phpbuilder site. When I run it I get nothing but an x in the top left corner of my web page(no errors nothing). GD is uncommented in my php.ini, ext dir set and I have verified that GD is installed

Re: [PHP] bargraph gd not working

2004-12-13 Thread jm
/png); Imagepng($image) ImageDestroy($image); ? Stan F [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] - Original Message - From: jm [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, December 14, 2004 3:22 AM Subject: [PHP] bargraph gd not working Hi