Re: [PHP-WIN] SQL injection - mysql_real_escape_string()?

2012-02-12 Thread Ariz Jacinto
Hi Jacob, Yes, you need to do more than just using mysql_real_escape_string() solely. I recommend the book "SQL Antipatterns: Avoiding the Pitfalls of Database Programming" by Bill Karwin http://www.amazon.com/SQL-Antipatterns-Programming-Pragmatic-Programmers/dp/1934356557 -- PHP Windows Maili

Re: [PHP-WIN] Unable to run programs in php

2009-06-30 Thread Ariz Jacinto
Hi Ravi, You need to comment out those extensions in your php.ini if they don't exist or are not part of the installer. If you really want to get started with PHP try installing XAMPP[1] or Zend Server Community Edition[2]. [1] http://www.apachefriends.org/en/xampp.html [2] http://www.zend.com/c

Re: [PHP-WIN] Question: Creating a GUI for Windows with PHP?

2009-06-09 Thread Ariz Jacinto
itch between controls with tab. Is > there a way to enable this? > > -- > --- > Contact info: > Skype: parham-d > MSN: fire_lizard16 at hotmail dot com > email: parham90 at GMail dot com > "Ariz Jacinto" wrote in message > news:75922d7b0906081452u506c1c

Re: [PHP-WIN] Question: Creating a GUI for Windows with PHP?

2009-06-08 Thread Ariz Jacinto
If you want a native Windows GUI, try Winbinder[1]. I used it before on my small GUI requirement at geepeeyes[2]. [1] http://winbinder.org/ [2] http://www.geepeeyes.org/ 2009/6/8 Parham Doustdar : > Hi there, > Does anyone know if it's possible to create a windows script with a GUI with > PHP?

Re: [PHP-WIN] how to invoke c# API dll using php: COM?

2007-09-13 Thread Ariz Jacinto
Hi Viola, have you tried this? $Obj = new COM("RegisteredDLLName.ObjectName") ; $Obj->foobar(); Reference: http://us.php.net/manual/en/ref.com.php -- Ariz Jacinto On 9/13/07, Viola Holownia <[EMAIL PROTECTED]> wrote: > Does anybody knows how to invoke c# API dll using

Re: [PHP-WIN] issues with serial data acquisition

2007-07-18 Thread Ariz Jacinto
have you tried initializing the com port first? (e.g. running MODE.COM, etc.) On 7/18/07, Aghor <[EMAIL PROTECTED]> wrote: Hi! Recently i was using php-cli with php_dio.dll for manipulate data from and to the serial port (com) under windows xp. Like an adquisition system that inserts data in

Re: [PHP-WIN] Localhost does not work

2006-08-10 Thread Ariz Jacinto
does 127.0.0.1 yield the same error? On 8/10/06, Harpreet <[EMAIL PROTECTED]> wrote: I am using sql server 2005 and apache. And yes they r on both the machines. -Original Message- From: John Meyer [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 12:00 PM To: php-windows@list

Re: [PHP-WIN] Function MAIL()

2006-08-09 Thread Ariz Jacinto
hi, kindly elaborate further on your problem. usually, you won't be needing a password to _Send_ an email using the mail() function. the ip address of the SMTP server will suffice for sending an email within your domain, at the least. perhaps you might be referring to the IMAP functions instead?

Re: [PHP-WIN] USB communication with PHP on Windows

2006-05-08 Thread Ariz Jacinto
ew my PHP source for accessing a similar USB device for comparison. it's at http://geepeeyes.sourceforge.net/ (GPS NMEA- plugin for GEarth Free Edition). hth, Ariz Jacinto On 5/8/06, Dale D. Attree <[EMAIL PROTECTED]> wrote: Is USB communication via PHP on Windows possible?

Re: [PHP-WIN] Newbie, PHP Script not sending email in WinME and PWS

2006-04-19 Thread Ariz Jacinto
one way to troubleshoot your problem is to run the simplest mail script (w/o From, etc. headers) and invoke it by commandline or over the web. if you still can't send emails, try replacing the SMTP domain name with an IP address. if the problem still persist, check your connection to the SMTP ser

Re: [PHP-WIN] Cam control

2006-04-18 Thread Ariz Jacinto
use the php_dio.dll, you may download it on pecl4win.php.net. On 4/18/06, Kahnjure <[EMAIL PROTECTED]> wrote: > > I have a pan and tilt mechanism with an opto-isolated circuit board that > connects to the LPT port. What I am trying to do is control it totally > in PHP. Can anyone point me in th

[PHP-WIN] PHP5 win32service extension 's file/IO problem

2006-03-30 Thread Ariz Jacinto
his a bug or by design? regards, Ariz Jacinto

[PHP-WIN] Re: Handle a serial communication on COM1

2006-03-30 Thread Ariz Jacinto
hi, download and install php_dio.dll at pecl4win.php.net. the documentation on how to use it's functions are included in the PHP manual (dio or direct IO). regards, Ariz Jacinto Hi, > > I intend to manage a serial communication with a > cash register trought COM1. > ... >

[PHP-WIN] embedding php to an application

2003-08-14 Thread Ariz Jacinto
how do i embed php to an application? should i simply link the application to php4embed.lib library? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] embedding php to an application

2003-08-14 Thread Ariz Jacinto
along with everything needed to run it. Regards, Adam. "Ariz Jacinto" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] how do i embed php to an application? should i simply link the application to php4embed.lib library? I've never heard of this library b