Re: [PHP] PHP XML Parsing

2001-05-18 Thread Fabian Raygosa
for xml you have to escape certain characters in the file, one is the ampersand ... - Original Message - From: Mike Gifford [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 18, 2001 12:24 PM Subject: [PHP] PHP XML Parsing Hello, In looking for a good script to parse XML

Re: [PHP] MSSQL

2001-05-14 Thread Fabian Raygosa
According to the php docs there is no mssql_pconnect just mssql_connect get rid of the p - Original Message - From: Andreas Pucko [EMAIL PROTECTED] To: Php (E-mail) [EMAIL PROTECTED] Sent: Monday, May 14, 2001 3:19 PM Subject: [PHP] MSSQL Hi there, while tying to connect to a MSSQL

Re: [PHP] MSSQL (Mistake)

2001-05-14 Thread Fabian Raygosa
DAMN SORRY there is a pconnect duh bad me bad me - Original Message - From: Fabian Raygosa [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Php (E-mail) [EMAIL PROTECTED] Sent: Monday, May 14, 2001 3:18 PM Subject: Re: [PHP] MSSQL According to the php docs there is no mssql_pconnect just

Re: [PHP] Is the CGI-only Win32 binary compiled with --enable-sockets?

2001-05-11 Thread Fabian Raygosa
I am not sure but i think you have to find a dll extension out there for sockets Unfortuantely i don't know any sites, google would be your best bet - Original Message - From: Todd [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 11, 2001 8:16 AM Subject: Re: [PHP] Is the

Re: [PHP] xmlHTTP.send equiv?

2001-05-01 Thread Fabian Raygosa
I was also going to post this question from below, if anyone has an answer please reply to me as well. Thanks - Original Message - From: Todd Kennedy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 01, 2001 1:37 PM Subject: [PHP] xmlHTTP.send equiv? Does anyone know of an

Re: [PHP] template solutions?

2001-04-30 Thread Fabian Raygosa
Maybe this is what you are looking for http://www.thewebmasters.net/php/FastTemplate.phtml - Original Message - From: Steven Haryanto [EMAIL PROTECTED] To: Michael Kimsal [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, April 30, 2001 11:40 AM Subject: Re: [PHP] template solutions?

Re: [PHP] XML Parsing

2001-04-30 Thread Fabian Raygosa
http://www.php.net/manual/en/ref.xml.php and http://www.phpbuilder.com/columns/joe2907.php3 great palces to get you started on XML parseing try the second one first as it jumps right into it with xpat. phpbuilder also has stuff for the DOM XML as well. - Original Message - From:

Re: [PHP] install question:php and mysql on win NT 4

2001-04-13 Thread Fabian Raygosa
As far as mysql on windows goes i think you can just use the DOS command line to type mysql as wellas use their MySqlManager.exe. But if you are used to unix stick with the DOS command line and make sure you are in the mysql/bin directory and it should be the same interface - Original

Re: [PHP] install question:php and mysql on win NT 4

2001-04-13 Thread Fabian Raygosa
Apache on NT is a service, check on control panel/services to see if it is running, beyond that i would need more details ... - Original Message - From: "Peter Van Dijck" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 13, 2001 11:46 AM Subject: Re: [PHP] install question:php

Re: [PHP] query 2 databases from one script

2001-04-03 Thread Fabian Raygosa
It would help to know the database but in Mysql you can just do this: if you connect to one databaseA, it is possible to grab info from another databaseB by this format: SELECT * FROM databaseA.TABLE while at the same time running this query elsewhere in your functions SELECT * FROM

Re: [PHP] Easy HTML PHP question

2001-03-28 Thread Fabian Raygosa
For images i think its different, i don't think you can force the image name that value instead the value gets turned into "button_x" and "button_y" with relation to where the mouse clicked on the image. In any event try using GET method instead of POST method to see whats displayed on the url

[PHP] (HELP) Reading a file sent through HTTP

2001-03-19 Thread Fabian Raygosa
A site is trying to send our website a xml file. Unfortunately it is not being sent through POST or GET. Using tools that the other site gives me to test my site i have determined only the file size through server vars CONTENT_LENGTH and CONTENT_TYPE which is text/xml. But thats it. I am stuck on

Re: [PHP] (HELP) Reading a file sent through HTTP

2001-03-19 Thread Fabian Raygosa
Sorry to clarify, the server environment does report it coming in as a POST but there is no variable name, its just a binary file - Original Message - From: "Rasmus Lerdorf" [EMAIL PROTECTED] To: "Fabian Raygosa" [EMAIL PROTECTED] Cc: "Php-General@Lists. Php. Ne

Re: [PHP] (HELP) Reading a file sent through HTTP

2001-03-19 Thread Fabian Raygosa
it overtly complicated now i can parse the xml_string. Thanks for the help, that was (hopefully) that last hurdle i had to jump - Original Message - From: "Rasmus Lerdorf" [EMAIL PROTECTED] To: "Fabian Raygosa" [EMAIL PROTECTED] Cc: "Php-General@Lists. Php. Net"