Hello,
I am relatively new to using PHP and I have a couple of questions that I have been not been able to find answers too. First is there a visual editor for PHP? You know like MS’s Visual Studio (I like color what can I say)? Second I know that recently PHP has added the command line features… and I was wondering if there was a way to connect a PHP script to a C++ program? I am developing a program that is going to require access to a mySQL database and I am going to have to have a C++ program and web access to the database. So I was hoping that I could kill 2 birds with one stone and just write one PHP class so I would not have up on the code. Does anyone have answers for me?
need some help
Moderator: General Moderators
There is no GUI editor (like MSVS) that I no of as PHP is a command line langauge and not an object orientientated langauge (by OOP I mean programming with visible objects like buttons and list, etc.) Zend Studio is an excellent PHP editor but does cost a bit. There is a demo though.
I am not sure about the command line functions (assuming you mean DOS), but you'd have to make two different classes... one for C++ and one for PHP.
I am not sure about the command line functions (assuming you mean DOS), but you'd have to make two different classes... one for C++ and one for PHP.
Do you mean RAD? if so, I don't know a GUI. But you may try phpEdit assuming that you're working on win32 (MS DevStudio). It took me a while to get it work properly but now it's quite nice.visual editor for PHP
There is also Visual PHP Studio out available at
http://www.visualphpstudio.com
But last time I checked the site it was down.
http://www.visualphpstudio.com
But last time I checked the site it was down.
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
I've been using Editplus for a while now and it does a fairly good job with syntax highlighting and an autocomplete thingy that you can edit yourself. It can be used for HTML and perl stuff as well.
Mac
Mac
Thanx
Thank you all for the informatoin on PHP editors I will take a look into them.
But I am still trying to find out if you can interface C++ with PHP. And when I asked the question I don't think I made myself clear on what I want to do. I want to write a C++ program that will call PHP scripts to get and manuipulate information in a PHP script. So the question is does anyone know if you can call a PHP script inside of a C++ program?
But I am still trying to find out if you can interface C++ with PHP. And when I asked the question I don't think I made myself clear on what I want to do. I want to write a C++ program that will call PHP scripts to get and manuipulate information in a PHP script. So the question is does anyone know if you can call a PHP script inside of a C++ program?