[PHP] SQLyog 3.51 Released

2003-06-30 Thread Karam Chand
SQLyog v3.51 - The definitive Windows Front End for MySQL, has been released. SQLyog is a superfast, compact and easy to use Front End for MySQL. Some of the new features added in SQLyog 3.51 are - -- Complete support for MySQL 4.1. -- Improved SQL Editor. -- Improved ODBC Import Tool. --

[PHP] SQLyog 2.51 - the definitve FREE Windows front-end to MySQL

2002-11-12 Thread Karam Chand
Greetings SQLyog v2.51. The definitive Windows Front End for MySQL. SQLyog is FREE! Some of the new features added in SQLyog 2.51 are - -- Alter Table structure in an easy to use Grid mode. -- Optimized for speed and network resources. -- Insert / Update data in a table. -- Insert / Update

[PHP] PHP Journals and Magazined

2003-10-13 Thread Karam Chand
Hello I just shifted to PHP from ASP and I am impressed. I have a query though - Apart from sites like phpbuilder.com etc. which is the most read English magazines read by PHP developers. I know PHP Arch..nebody reading something else...just querying...might subscribe to one of them.

[PHP] Execute a linux binary that generates a registration code...

2003-12-04 Thread Karam Chand
Hello I have got an app wherein you need to pass a name as the first parameter and it will output that is cout a registraion code for my app based on the name. I would like to give a web based interface wherein a user can give his name on the form and I will be able to generate the code from

[PHP] Not able to Linux binary

2003-12-04 Thread Karam Chand
Hello I created a linux binary using GCC. Whenever you execute it reads a file from the current directory and outputs the contents. e.g. - ./myapp output hello world. Now I want to execute it from php() so that I can output the content on a HTML page or get the data in a variable. Reading

Re: [PHP] Not able to Linux binary

2003-12-05 Thread Karam Chand
about safe mode. My PHP is loaded up in my Host's server. Can I change the settings? If yes then what should I do? Thanks for your help. Karam --- Jason Wong [EMAIL PROTECTED] wrote: On Friday 05 December 2003 14:04, Karam Chand wrote: I created a linux binary using GCC. Whenever you

Re: [PHP] Not able to execute Linux binary

2003-12-05 Thread Karam Chand
Off Off safe_mode_exec_dir no value no value safe_mode_gid Off Off safe_mode_include_dir no value no value Thanks for the help. Karam --- Jason Wong [EMAIL PROTECTED] wrote: On Friday 05 December 2003 20:43, Karam Chand wrote: I have set the error reporting to full but nothing happens

Re: [PHP] Not able to execute Linux binary

2003-12-05 Thread Karam Chand
means the array is empty !!! it should have outputted ErrorError Both the php and the binary exsits in http://www.mydomain.com/mgmt/ Can I send you the binary so that you can check it out? Karam --- Jason Wong [EMAIL PROTECTED] wrote: On Saturday 06 December 2003 02:44, Karam Chand wrote

Re: [PHP] Not able to execute Linux binary

2003-12-07 Thread Karam Chand
2003 12:56, Karam Chand wrote: looking at manuals and help and some help from you. i wrote the attached code- error_reporting (E_ALL); ini_set('display_errors', 1); $result = `./myapp`; print_r ( $result ); echo ( 2 ); exec(./myapp,$result); print_r

[PHP] PHP code documentation tool

2004-01-08 Thread Karam Chand
Hello I recently got a fairly big project in PHP. Before starting I would like to clear some doubts. What is the best way to document such projects? How you developers document your project? For .NET etc. there are many documentation tools like doc-o-matic etc. Do we need to document the code

[PHP] Webyog releases SQLyog 3.71 SJA 2.0

2004-06-09 Thread Karam Chand
Webyog has released SQLyog 3.71 SQLyog Job Agent ( SJA ) v2.0 Some of the major features added in SQLyog 3.71 are - -- SQLyog Notification Services - This new feature allows delivery of formatted resultset(s) over email at scheduled intervals. -- SQLyog Database Synchronization Tool now

[PHP] Best way to figure out whether a query returns RESULT or NON-RESULT

2004-10-15 Thread Karam Chand
Hello, I have an app where one module is similar to phpMyAdmin (well only .1%) with error_reporting() set to E_ALL. Now a user can execute any query. What is the best way to know whether a query is result or non-result. e.g. $result = mysql_query ( $query, $mysql ); if ( !$result ) {

Re: [PHP] Best way to figure out whether a query returns RESULT or NON-RESULT

2004-10-16 Thread Karam Chand
mysql_num_rows() at all. The problem is that if I set error_reporting( 0 ), everything works but we are required to have error_reporting ( E_ALL ) Regards, Karam --- Chris [EMAIL PROTECTED] wrote: Karam Chand wrote: Hello, I have an app where one module is similar to phpMyAdmin (well only .1

Re: [PHP] Best way to figure out whether a query returns RESULT or NON-RESULT

2004-10-16 Thread Karam Chand
Thanks. Never knew there existed (===). Silly me :) Regards, Karam --- Marek Kilimajer [EMAIL PROTECTED] wrote: Karam Chand wrote: Hello, mysql_query() returns non-false even if there was an UPDATE statement and the query was successful. But if I put the $result variable

[PHP] MySQL/PHP Tunneling

2004-07-10 Thread Karam Chand
Hello, Recently lot of MySQL clients try to overcome host based privilege system of MySQL by using PHP tunneling method. In this method they call up a PHP file in the server and the PHP file executes a query and sends the data in XML format. I am using C API() and I was just wondering if

Re: [PHP] MySQL/PHP Tunneling

2004-07-10 Thread Karam Chand
--- Curt Zirzow [EMAIL PROTECTED] wrote: First off, when starting a new topic, don't reply to message and then change the topic. Sorry. But I just didnt remember the email addy so I took that way :). * Thus wrote Karam Chand: Hello, Recently lot of MySQL clients try to overcome

Re: [PHP] MySQL/PHP Tunneling

2004-07-11 Thread Karam Chand
] wrote: * Thus wrote Karam Chand: --- Curt Zirzow [EMAIL PROTECTED] wrote: Now, many of the ISPs blokc 3306 for security reason and you cannot access MySQL from a 3rd party tool and have to use phpMyAdmin which is able to access the MySQL server as it is running on the same box

[PHP] Server Error : Premature end of script headers: php-engine

2004-08-24 Thread Karam Chand
Hello, I have a fairly big table of 60K rows with 9 cols. I have a C++ app that connects to a PHP page. This PHP page in turn connects to the above table and outputs all the row in form of XML. I get all this data in my C++ app, parse it with an XML parser and do my work. My PHP source looks

Re: [PHP] Server Error : Premature end of script headers: php-engine

2004-08-24 Thread Karam Chand
, Karam --- Curt Zirzow [EMAIL PROTECTED] wrote: * Thus wrote Karam Chand: Hello, I have a fairly big table of 60K rows with 9 cols. I have a C++ app that connects to a PHP page. This PHP page in turn connects to the above table and outputs all the row in form of XML. I get all

Re: [PHP] Server Error : Premature end of script headers: php-engine

2004-08-25 Thread Karam Chand
combined work crosses the memory limit. Regards, Ritesh --- Curt Zirzow [EMAIL PROTECTED] wrote: * Thus wrote Karam Chand: Hello, Connecting to the PHP using Windows WinInet APIs. Mine is a C++ app that connects to the PHP and gets data. The above probcess works like a cheese

[PHP] Time consumed in microseconds

2004-08-30 Thread Karam Chand
Hello, In Win32 API to profile a job we use the following method: timetaken = GetTickCount(); /* do some job */ timetaken = GetTickCount() - timetaken; In this way timetaken returns you the time taken by the job to complete? How can I get it in PHP. I want the exact figure in ms? I used

Re: [PHP] Time consumed in microseconds

2004-08-31 Thread Karam Chand
to get the difference in ms I have to multilply $diff by 1000. Am I correct? Regards, Karam --- John Holmes [EMAIL PROTECTED] wrote: Karam Chand wrote: In Win32 API to profile a job we use the following method: timetaken = GetTickCount(); /* do some job */ timetaken