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

2007-04-11 Thread JM Guillermin
- Original Message - 
From: Robert Cummings [EMAIL PROTECTED]

To: Jay Blanchard [EMAIL PROTECTED]
Cc: Jochem Maas [EMAIL PROTECTED]; php-general@lists.php.net
Sent: Thursday, April 12, 2007 1:05 AM
Subject: RE: [PHP] WWE in Stamford, CT needs a kick ass PHP Developer!



On Wed, 2007-04-11 at 18:03 -0500, Jay Blanchard wrote:

[snip]
Robert Cummings wrote:
 On Wed, 2007-04-11 at 18:53 -0400, Robert Cummings wrote:
 On Wed, 2007-04-11 at 17:43 -0400, Arbitrio, Pat wrote:
 Other skills: 

 * Dreamweaver 
 *ROFLMFAO*
 
 Still *ROFLMFAO*


I don't see what's so funny. there is great 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 |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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: php-general@lists.php.net
Sent: Tuesday, April 10, 2007 10:11 PM
Subject: [PHP] Novice PHP Question - Listing Folder Contents


I apologize in advance, however I know almost nothing about PHP - ( but I 
am

trying to learn now)...

I am wondering if it is possible to create a PHP page that can:

1 - Get the contents of everything in its own folder at the same level (
just list sub folders filenames - not their contents)

2 - List/ display the contents on the same Web-page

Q:  I'm sure this is most likely doable - but I sure could use some help -
any ideas how to do this?


Example list:


file1.php
file2.php
file22.txt
file1.pdf


- that sort of thing


--
Thanks - RevDave
[EMAIL PROTECTED]
[db-lists]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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]

To: php-general php-general@lists.php.net
Sent: Saturday, April 07, 2007 2:35 AM
Subject: [PHP] Submitting as POST. Why?



My Peeps,

I only know of one reason to submit a form as POST and that is because
you can submit more data in one shot.


What other reasons are there?



Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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, the program parses the file and 
produces an error at the end of the foreach loop when it reaches the end of 
the tag, it tries to look for an element/tag when there is none and 
produces an error Call to a member function attributes() on a non-object 
the foreach loop looks like this


 foreach($xml-CS as $CS)
{
//processing takes place here
}

 when there are no more CS it fires an error

 How can i detect when there are no more elements/tags to parse and handle 
it?



cheers


-
It's here! Your new message!
Get new email alerts with the free Yahoo! Toolbar. 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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

- Original Message - 
From: Tijnema ! [EMAIL PROTECTED]

To: Sébastien WENSKE [EMAIL PROTECTED]
Cc: php-general@lists.php.net
Sent: Thursday, April 05, 2007 3:56 PM
Subject: Re: [PHP] DOMDocument::schemaValidate() - libxml_get_errors()


On 4/5/07, Sébastien WENSKE [EMAIL PROTECTED] wrote:

Hello all, (sorry for my bad english)

I've this script, it checks an XML file with an XSD file.
it reports errors in the XML with line number, but i've large XML file (up
to 560MB) and the line number
doesn't exceed 65535. for upper lines he return always 65535.

An idea ?

Thx in advance.



I don't really understand what you're saying, but i might be able to
help you if you post the output of the script you posted, and then
tell what the expected output is.

Tijnema

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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: Thursday, April 05, 2007 10:21 PM
Subject: Re: [PHP] DOMDocument::schemaValidate() - libxml_get_errors()


Yes it's exactly the error, see the output :

DOMDocument::schemaValidate() Generated Errors!
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 33326 - that's 
right
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 65535 - that's 
wrong the real line number is upper
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 65535 - that's 
wrong the real line number is upper
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 65535 - that's 
wrong the real line number is upper
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 65535 - that's 
wrong the real line number is upper
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 65535 - that's 
wrong the real line number is upper
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 65535 - that's 
wrong the real line number is upper
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 65535 - that's 
wrong the real line number is upper
Error 1871: Element 'EcheanceRMC': This element is not expected. in 
file:///D%3A/wamp/www/XML%20Validator/xml/Edit4.xml on line 65535 - that's 
wrong the real line number is upper

[...]


is it du to the integer ?? (16bits ??)




- Original Message - 
From: JM Guillermin [EMAIL PROTECTED]
To: Tijnema ! [EMAIL PROTECTED]; Sébastien WENSKE 
[EMAIL PROTECTED]

Cc: php-general@lists.php.net
Sent: Thursday, April 05, 2007 4:23 PM
Subject: Re: [PHP] DOMDocument::schemaValidate() - libxml_get_errors()


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

- Original Message - 
From: Tijnema ! [EMAIL PROTECTED]

To: Sébastien WENSKE [EMAIL PROTECTED]
Cc: php-general@lists.php.net
Sent: Thursday, April 05, 2007 3:56 PM
Subject: Re: [PHP] DOMDocument::schemaValidate() - libxml_get_errors()


On 4/5/07, Sébastien WENSKE [EMAIL PROTECTED] wrote:

Hello all, (sorry for my bad english)

I've this script, it checks an XML file with an XSD file.
it reports errors in the XML with line number, but i've large XML file 
(up

to 560MB) and the line number
doesn't exceed 65535. for upper lines he return always 65535.

An idea ?

Thx in advance.



I don't really understand what you're saying, but i might be able to
help you if you post the output of the script you posted, and then
tell what the expected output is.

Tijnema

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 use the php.exe for all .php scripts

John


 
 -- Forwarded message --
 From: Alon Solell [EMAIL PROTECTED]
 To: php-windows@lists.php.net
 Date: Fri, 19 Aug 2005 21:43:27 +0300
 Subject: Question about Windows Installation
  Hi Y'all,
 
 I think I'll stick to the 4.4.0 for now,. but the install process seemed 
 pretty much the same for 5.0.4
 
 If I use the php installer,. it install only the barebone version of PHP.
 I need to add the extensions to support mbstring, mysql etc..
 
 I'm using IIS6 as this is a Windows 2003 Server and I have the requierment to 
 use
 that. Otherwise, I'd use Apache. So.. I know lots of you will try to sway me 
 to use Apache and Linux,. but that would be barking at the wrong tree. I have 
 serveral Linux boxes working fine,. and I love them. This is a requirement 
 from my end user so the need is to install the PHP with IIS6.
 
 What I've done so far:
 
 I created the following tree:
 
 C:\hostingapps\php\
 
 In that directory, I've unzipped the PHP package.
 From the instructions, I understood I need to move all the files in the 
 direcotries:
 
 C:\hostingapps\php\dll
 C:\hostingapps\php\isap
 
 to the:
 
 C:\hostingapps\php\
 
 
 When I used the installer,.. it created a php.ini file in the
 
 C:\Windows\php.ini
 
 (using the installer worked fine, but no extensions were available).
 
 and I guess I can just use it?
 
 I also manually added the path:
 
 C:\hostingapps\php
 
 And then restarted the IIS server.
 However,. I'm still getting an error:
 
 HTTP Error 404 - File or directory not found.
 Internet Information Services (IIS)
 
 What am I missing?
 
 Thanks,
 
 -Alon.
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 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 use the php.exe for all .php scripts
 
 John
 
 
 
  -- Forwarded message --
  From: Alon Solell [EMAIL PROTECTED]
  To: php-windows@lists.php.net
  Date: Fri, 19 Aug 2005 21:43:27 +0300
  Subject: Question about Windows Installation
   Hi Y'all,
 
  I think I'll stick to the 4.4.0 for now,. but the install process seemed 
  pretty much the same for 5.0.4
 
  If I use the php installer,. it install only the barebone version of PHP.
  I need to add the extensions to support mbstring, mysql etc..
 
  I'm using IIS6 as this is a Windows 2003 Server and I have the requierment 
  to use
  that. Otherwise, I'd use Apache. So.. I know lots of you will try to sway 
  me to use Apache and Linux,. but that would be barking at the wrong tree. I 
  have serveral Linux boxes working fine,. and I love them. This is a 
  requirement from my end user so the need is to install the PHP with IIS6.
 
  What I've done so far:
 
  I created the following tree:
 
  C:\hostingapps\php\
 
  In that directory, I've unzipped the PHP package.
  From the instructions, I understood I need to move all the files in the 
  direcotries:
 
  C:\hostingapps\php\dll
  C:\hostingapps\php\isap
 
  to the:
 
  C:\hostingapps\php\
 
 
  When I used the installer,.. it created a php.ini file in the
 
  C:\Windows\php.ini
 
  (using the installer worked fine, but no extensions were available).
 
  and I guess I can just use it?
 
  I also manually added the path:
 
  C:\hostingapps\php
 
  And then restarted the IIS server.
  However,. I'm still getting an error:
 
  HTTP Error 404 - File or directory not found.
  Internet Information Services (IIS)
 
  What am I missing?
 
  Thanks,
 
  -Alon.
 
 
 


-- 
John Martinez
http://www.funkyfreshdesigns.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 truncate at print time.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 have the column headers then the
data.

It's taking me a little time to write this and I'm wondering if their
is something like this out there already I can use?

John

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 in the
LAN and 10% will go over the WAN.

I'm wondering if I can get good performance out of a small system with
2GB RAM, 1GBps NIC, and a SATA disk or three spanned.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 seem easier to use this data type than
using integers...any tips or routines for handling this?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 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 seem easier to use this data type than
  using integers...any tips or routines for handling this?
 
 It is much much easier to use at least the DATE type in your database.
 
 What if, six months from now you want to select all records that occured
 on even numbered Tuesdays?
 
 How would you do that if all you have is integers?
 
 I suppose you could look at every single row and do the math in PHP, but
 that's going to be a pain and won't scale very well...
 
 Good luck!
 
 


-- 
John Martinez
http://www.funkyfreshdesigns.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 value={$var}  
will display as: 
i like fi   
in the text form...

Any help?

-- 
John

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 see if the
rows are increasing but they aren't. I figured this would be enough
for the insert, I even tried:

$mysqli-commit();

but their is no change. The SELECT is returning the correct amount of
rows. Any suggestions?

-- 
J

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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, name_first, name_last) VALUES
 (1, 'George', 'Dubbuyah');
 
 $mysqli-query($sql);
 
 I have a followup SELECT that prints the rowcount so I can see if the
 rows are increasing but they aren't. I figured this would be enough
 for the insert, I even tried:
 
 $mysqli-commit();
 
 but their is no change. The SELECT is returning the correct amount of
 rows. Any suggestions?
 
 --
 J
 


-- 
J

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[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 through php -m,phpinfo() , and gd_info(). Can anyone offer me some
advice on how to troubleshoot this problem.
I searched google, and did see other posts like mine but no solutions. Any
thoughts or suggestions would be appreciated

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] bargraph gd not working

2004-12-13 Thread jm
Hey Stan:
None of the other php/gd scripts work either. I have just started working 
with this so at this point all I'm doing is tinkering with a bunch of 
examples .
Here's one CODE example,  and it gets called from  img src=bargraph.php 
in a html page.


?php

 // graph parameters
 $graphwidth = 400;
 $graphHeight = 200;
 $graphscale = 2;
 $graphfont = 5;
 $graphdata = 
Array(beef=99,pork=75,chicken=15,lamb=66,fish=22);


$image = imagecreate($graphwidth,$graphheight) ;

 imageantialias($image,true);

 $colorbody = imagecolorallocate($image,255,255,255);
 $colorgrid = imagecolorallocate($image,255,0,0);
 $colorbar = imagecolorallocate($image,0,255,0);
 $colortext = imagecolorallocate($image,0,0,255);

 imagefill($image,0,0,$colorbody);

 $gridlabelwidth = imagefontwidth($graphfont)*3+1;
 imageline($image,$gridlabelwidth,0,$gridlabelwidth,$graphheight - 
1,$colorgrid);

 $styledashed = 
array_merge(array_fill(0,4,$colorgrid),array_fill(0,4,IMG_COLOR_TRANSPARENT));
 imagesetstyle($image,$styledashed);

 for($index = 0;$index  $graphheight;$index += $graphheight/10)
 {
imageline($image,0,$index,$graphwidth - 
1;$index,IMG_COLOR_STYLED);
imagestring($image,$graphfont,0,$index,round(($graphheight - 
$index)/$graphscale),$colortext);

 }

 imageline($image,0,$graphheight - 1,$graphwidth - 1,$graphheight - 
1,$colorgrid);

 $barwidth = (($graphwidth-$graphlabelwidth)/count($graphdata)) - 
10;
 $column = 0;

 foreach($graphdata as $label=$value)
 {
 $bartopx = $gridlabelwidth + (($column+1) + 10) + ($column 
* $barwidth);
 $barbottomx = $bartopx + $barwidth;
 $barbottomy = $graphheight - 1;
 $bartopy = $barbottomy - ($value * $graphscale);

 
imagefilledrectangle($image,$bartopx,$bartopy,$barbottomx,$barbottomy,$colorbar);

 $labelx = $bartopx + (($barbottomx - $bartopx)/2) - 
(imagefontheight($graphfont)/2);
 $labely = $barbottomy - 10;

 imagestringup($image,$graphfont,$labelx,$labely,$label: 
$value,$colortext);
 $column++;
 }

 //output image
 header(Content-Type: image/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 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 through php -m,phpinfo() , and gd_info(). Can anyone offer me
 some
 advice on how to troubleshoot this problem.
 I searched google, and did see other posts like mine but no solutions. 
 Any
 thoughts or suggestions would be appreciated


 Do other php/gd scripts work as expected?
 (ie display images)
 Do you send the correct headers to browser?
 Please show us the code cuz without it it's not so easy to help.

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



 HTH
 Stan F 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php