[email protected]

2007-02-20 Thread Haydar Tuna
line display b on the screen. -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net "OKi98" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Peter Beckman wrote: > >> B

[PHP-DB] Re: SQL query error

2007-02-20 Thread Haydar Tuna
Hello, Do you check the how many rows return. You can display rows count with following PHP code. If rows count is zero, you can see the blank page. :) $num_rows = mysql_num_rows($result); echo ($num_rows); -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education

[PHP-DB] Re: MSSQL Server

2007-02-20 Thread Haydar Tuna
Hello, If you can change the SQL Server Authentication to the Mixed Mode (Windows and Remote User), your problem will be fixed. If you use the Unix like Operating System, you can install FreeTDS package to connect MSSQL Server.:) -- Haydar TUNA Republic Of Turkey - Ministry of

[PHP-DB] Re: echo delay...

2007-02-21 Thread Haydar Tuna
Hello, if you use the AJAX, your problem will be solved. :) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net ""Matthew Ferry"" <[EMAIL PROTECTED]> wrote in mess

[PHP-DB] Re: Problem with ocilogon

2007-02-21 Thread Haydar Tuna
Hello, if you add your ENV variables for the oracle user (for example ORACLE_HOME, ORACLE_SID) in the Apache startup script, your problem will be solved.:) . You can create your your own Apache startup script /etc/rc.d/init.d folder after this step. You should create a link file. You can f

[PHP-DB] Re: How to call image from mySql to php file

2007-02-21 Thread Haydar Tuna
after close the connection. You should close the connection all of process.:)) if you call the picture in HTML with img tag. in your code if you change the echo line like this echo ", you will see the picture:) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Educ

Re: [PHP-DB] recursion in php and mysql

2007-03-03 Thread Haydar TUNA
Hello, You can use class like the following code .:) Execute(); $query2 = new MySQLCommand ($sql2, $conn); $query2->Execute(); .. ?> "Micah Stevens" <[EMAIL PROTECTED]>, haber iletisinde sunlari yazdi:[EMAIL PROTECTED] > Classes are overrated. :) > > Bastien Koe

[PHP-DB] Re: Creating a Table to line query results in php?

2007-03-03 Thread Haydar TUNA
Hello, You can use HTML tag. if you change your echo line in the code below, may be your problem will be fixed :) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net "Scott&quo

[PHP-DB] Re: mssql Database name grater than 30 characters

2007-03-03 Thread Haydar TUNA
Hello, All of objects that you created in SQL Server is in the master database. In this database, there is a table called sysobjects that put all of information about tables and so on. You can see table name length in this table :) -- Haydar TUNA Republic Of Turkey - Ministry of

[PHP-DB] Re: auto upload

2007-03-03 Thread Haydar TUNA
everytime:) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net ""bedul"" <[EMAIL PROTECTED]>, haber iletisinde sunlari yazdi:[EMAIL PROTECTED] > this might a strange c

Re: [PHP-DB] error creating tables

2007-03-03 Thread Haydar TUNA
#x27;t any problem. if the accout isn't root, you should check your user privileges. -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net "Frank Flynn" <[EMAIL PROTECTED]>, haber i

[PHP-DB] Re: odbc problem

2007-03-11 Thread Haydar Tuna
2003 operating systems becuase in Windows 2003 , when I run PHP with IIS I faced many problems. :) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net ""bedul"" <[EMAIL PROTEC

[PHP-DB] Re: PHP_AUTH_USER & .htaccess

2007-03-12 Thread Haydar Tuna
Hello, You can use HTTP_AUTH without .htaccess file. It is very easy. You can use like following example on your web site.:) Authorization Required."; exit; } else { session_start(); session_register("sessionpass"); $_SESSION["sessionpass"]="1"; header( 'Location: http://www.somehostname.co

[PHP-DB] Re: imagettfbbox

2007-03-12 Thread Haydar Tuna
compile them with PHP together, your problem will be fixed easily.:) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net ""Mad Unix"" <[EMAIL PROTECTED]> wrote in message news:[EM

[PHP-DB] Re: php with IIS

2007-03-11 Thread Haydar Tuna
problems. You can run PHP with IIS two types (ISAPI and CGI) . You can find any document www.php.net web address or internet about this topics. :) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net

[PHP-DB] Re: Search

2007-03-13 Thread Haydar Tuna
descending order. This is simple, easy and very useful searching method:) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net "MIGUEL ANTONIO GUIRAO AGUILERA" <[EMAIL PROTECTED]> wrote in mes

[PHP-DB] Re: Connecting to MS Access Database using PHP via ODBC.

2007-03-17 Thread Haydar TUNA
hen I changed oracle installation directory's user privileges in Windows 2003, I was running php and oracle together. :) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net ""ABCOM Support

[PHP-DB] Re: IF ( $_POST['submit'] == "Update Subscriptions" OR$_POST['submit'] == "Update Entire Account" ) {

2007-03-18 Thread Haydar TUNA
Hello, Can you send your HTML form structure? How many HTML form do you use? It's important to solve your problems :) -- Haydar TUNA Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net "Ron Piggot

[PHP-DB] Re: help with mysql connect error

2007-03-25 Thread Haydar TUNA
Hello, Firstly download the PHP 5.X source tar.gz package and then install the PHP 5.X --with-mysql=DIR parameter (DIR is the mysql 5 installation directory). If you try to use this method, your problem will be fixed. I think you installed the mysql 5 and PHP 4 together with --with-mysq

Re: [PHP-DB] mysql question.

2007-04-03 Thread Haydar TUNA
Hello, I try your SQL statements. There is no problem on your SQL syntax and you can use alias in the order by clause.:) $SQL = "SELECT EMail,count(EMail) AS repeated FROM mena_guests WHERE Voted = 'yes' GROUP BY EMail ORDER BY repeated LIMIT $startingID,$items_numbers_list"; -- Rep

[PHP-DB] Re: MySQL- Stored Procedures & Views

2007-08-30 Thread Haydar TUNA
Hello, Stored Procedures are faster than standart sql query beacuse they have already compiled sql script. -- Republic Of Turkey - Ministry of National Education Education Technology Department Ankara / TURKEY Web: http://www.haydartuna.net ""Lasitha Alawatta"" <[EMAIL PROTECTED]>, h