[PHP] is there something like get_time_limit() ?

2001-04-22 Thread almir
is it possible to get time limit of script on server ? almir -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] constants and case sensitivity

2001-03-30 Thread almir
just when I thought , nice I didn't know how does it work i found out that it is not wroking anyhow if I put define ("rights", "RIGHTS", X); define ("Rights", "RIGHTS", X); echo rights . "->" .defined("rights") ." " .Rights ."->" .defined("Rights").""; regardless of X i always get RIGHTS->1 R

Re: [PHP] constatnts and case sensitivity

2001-03-30 Thread almir
i had a old manual localy , but now i have found it on net with optional parametar , sorry ""almir"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 9a2ksp$kkm$[EMAIL PROTECTED]">news:9a2ksp$kkm$[EMAIL PROTECTED]... > hallo people > simply > i am using ph

[PHP] constatnts and case sensitivity

2001-03-30 Thread almir
hallo people simply i am using php 3.0.11 on IIS4 here is a problem if I use define ("Rights", "RIGHTS"); define ("rights", "RIGHTS"); end then echo Rights ."-" . rights / / output : RIGHTS - rights simply if i have constant Rights i cannot define a new one rights but if i meke echo of rights i

[PHP] oci8 and primary key & its speed

2001-03-26 Thread almir
first of all thank all of you who helpd me up to now, to make this work now when i make SELECT c.column_name, c.position FROM user_cons_columns, c, user_constraints t WHERE t.table_name='YOURTABLENAME' AND t.constraint_type='P' AND t.constraint_name=c.constraint_name AND t.table_name=c.table

[PHP] finding primary key with oci8

2001-03-25 Thread almir
is there any why to find out from php with oci8 functionen , which colomn/s is/are primary key in a table in oracle almir -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] PHP_SELF problems!

2001-03-25 Thread almir
simple echo basename($PHP_SELF) or base_name check docu almir ""Erick Papadakis"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 99foro$tig$[EMAIL PROTECTED]">news:99foro$tig$[EMAIL PROTECTED]... > hi, > > i am using my program > > http://loc

Re: [PHP] Move data from one MySql table to another?

2001-03-24 Thread almir
write insert into new_table (val1, val2) select from old_table val1, val2 where id=kdsaflkj and execute it with php like any other statement almir ps. but checking mysql.com helps, there are lot of other interesting things ""YoBro"" <[EMAIL PROTECTED]> schrieb im New

Re: [PHP] WebCam and PHP

2001-03-24 Thread almir
simply insert disk2 into flopy and press any key to continue almir ""Chris Lee"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 99fq6b$acv$[EMAIL PROTECTED]">news:99fq6b$acv$[EMAIL PROTECTED]... wow thats a vague question :) are you trying to display them to the

Re: [PHP] Image background bleeding through text

2001-03-24 Thread almir
check if the area you are filling with another colour is realy closed, maybe send a url to that it could help almir ""Kevin Rose"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 000c01c0b3b7$87a071c0$8105a8c0@kevin">news:000c01c0b3b7$87a071c0$8105a8c0@kevin

Re: [PHP] i get this for some reason

2001-03-24 Thread almir
$text=stripslashes($text); almir ""Jason Lotito"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > -Original Message- > > From: adam [mailto:[EMAIL PROTECTED]] > > Sent: Saturday, March 24, 20

Re: [PHP] $PHP_SELF - internal error?

2001-03-24 Thread almir
is it realy everithing that you get from php or there is something missing ? i mean usualy it helps basename() or base_name() cant remmember now try it, but in your case it seems differently almir ""Tommy"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 99i3q7$57q$[EMA

Re: [PHP] Text fading with PHP?

2001-03-24 Thread almir
i think you need DHTML or flash almir ""Jamie Anderson"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 99is88$m8a$[EMAIL PROTECTED]">news:99is88$m8a$[EMAIL PROTECTED]... > Hi > > Is it possible to do text fading with PHP. For instance, I want to one lin

[PHP] oracle last inserted

2001-03-24 Thread almir
almir -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] mssql

2001-03-24 Thread almir
1) if you are running it on linux(web server ) it will cost you about 2000$ at least to connect it , and you will have to use odbc for linux, 2)if you are using ms web server then you have to enable support for that in php3.ini but usualy this way is not good, i usualy had problems with that and i

Re: [PHP] Date subtraction

2001-03-22 Thread almir
PERIOD_DIFF(P1,P2) or convert them both tu unix_time(p1) - unix_time(p2) then you can have seconds and format them as you want almir ""BlackLord"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 99dcs5$cbh$[EMAIL PROTECTED]">news:99dcs5$cbh$[EMAIL PROTECTED]... &g

[PHP] LDAP problem

2001-03-22 Thread almir
se I realy dont know what to do I also tryied with two different files from php 3.0.11 and 3.0.17 both of them are 56k (could be the same) but none of them works -almir -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

AW: [PHP] file height and width

2001-03-21 Thread Kazazic Almir
if it is about logos and stuff that may be changed put it simply in a include and include it from all over or make a function and call it -almir -Ursprüngliche Nachricht- Von: darion mapp [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 21. März 2001 23:05 An: almir Betreff: Re: [PHP

Re: [PHP] load DB from other server

2001-03-21 Thread almir
are you trying only to connect to database or to transport data from one db to another (LOAD) connect will do just fine to export and inport data between two databases use mysql programms mysqldump and mysqlimport or for smaller DB phpMyAdmin is ok -almir ""McShen"" <[EM

Re: [PHP] Header Problem

2001-03-21 Thread almir
are you using cookies together with header , i had problems with that -almir <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > I`m having whats probably a very basic problem but just can`t get my head > around it this la

Re: [PHP] Optional Parameter ?

2001-03-21 Thread almir
function print_this( $value1, $value2, $maybe3="somethin") { } -almir "Jack Sasportas" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Is it possible to have a function that looks something like > > fun

Re: [PHP] Attachment problem with web based mail - CODE SAMPLE

2001-03-21 Thread almir
if you want to change the behaviour of IE or NN with save, then you have to change header of the page you are sending with header comand -almir ""Grant Walters"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 001101c0b1f8$d7c52080$[EMAIL PROTECTED]">news:0011

Re: [PHP] file height and width

2001-03-21 Thread almir
1) why put it into db , i dont think it is good idea to do it, put it in file sytem , check it with image funrtions and than do what you want to or even easier use stiles to format it with html so that it doesn´t metter how big file actualy is -almir ""george"" <[EMAIL

Re: [PHP] include virtual, file or exec cgi?

2001-03-21 Thread almir
you can include through http ,I did it even remotly and it works fine but slow, see in manual how to read files through http -almir ""Christian Dechery"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Can't I

Re: [PHP] Simple question about mail() limitations (if any :)

2001-03-21 Thread almir
on IIS it is much better solution for more than few mails is to put them simply in pickup directory of smtp server, I am also sure that there is a similar possibility on linux -almir ""SED"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EM

Re: [PHP] MySQL "DISTINCT" query

2001-03-21 Thread almir
select distinct * from mytable is functioning just as it should what the answer is not group by try pleas to explain better what do you want almir "Jared Howard" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I need to ret

Re: [PHP] PHP an WinNT-Filesystem

2001-03-21 Thread almir
try giving all rights to all users for short time just to check if it is going to work at least in this case, i never had problems localy (only in network) it works fine with me wich php are you using ""Dirk Ritters"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 99arbh$ior$[EMAIL PROTECTED]">news:99

Re: [PHP] URIs as variables

2001-03-21 Thread almir
try with uri= ""Issac Goldstand"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 99at42$5be$[EMAIL PROTECTED]">news:99at42$5be$[EMAIL PROTECTED]... > Newbie question here. I am trying to pass a varaible containing a URI > across a few scripts. Basically, the first script get's a query string > in

Re: [PHP] Problems connecting to remote mySQL server

2001-03-21 Thread almir
the only problem could be that yourUser@webhost do not have same permisions for this db as yourUser@yourHost, check them if you can -almir "Floyd Piedad" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi Almir, > >

Re: [PHP] Problems connecting to remote mySQL server

2001-03-20 Thread almir
when you connect to server issue "show databases" -query then look inside what you can see some servers are case sensitive i hope that will help, and are you sure that you are connected , it could be that you may not connect at all because of firewalls or something like that -almir

Re: [PHP] Hash syntaxes? simple but helpful

2001-03-20 Thread almir
use $aArray["abc"]=7; echo $aArray["abc"]; ""Costas"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 997b0s$3cl$[EMAIL PROTECTED]">news:997b0s$3cl$[EMAIL PROTECTED]... > I am used to perl syntax of: > > $var->{'abc'} for a hash (associative array) > > Can this syntax be done for PHP. > > What other

Re: [PHP] \"deleted\" cookie

2001-03-20 Thread almir
and I dont think you should use haeder functions with cookie together do it with javascript , i had some problems if I used this two together (cookie, and header) -almir "Nikolai Vladychevski" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAI

Re: [PHP] \"deleted\" cookie

2001-03-20 Thread almir
set its valu to nothing , or expiery date to yesterday the best is both -almir "Nikolai Vladychevski" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > [EMAIL PROTECTED] wrote: > > > > How do you &quo

[PHP] usage of constants

2001-03-20 Thread almir
are constants global, do i have to do something in my classes so that i can use them as object variables, i have tested in with functions seems to be global but how about classes and has anybody used it realy regards almir -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

Re: [PHP] Re: php editors

2001-03-20 Thread almir
homesite is very nice www.allaire.com almir ""Richard Lynch"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 01f901c0b0c8$291ba800$[EMAIL PROTECTED]">news:01f901c0b0c8$291ba800$[EMAIL PROTECTED]... > > I am looking for good php editors. Currently, i am using