Re: [PHP] How to get folders names in a dir

2003-01-01 Thread Alexander Guevara
THX "John Nichel" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > http://www.php.net/manual/en/ref.dir.php > http://www.php.net/manual/en/function.is-dir.php > > > Alexander Guevara wrote: > > i need to get in a sele

[PHP] How to get folders names in a dir

2003-01-01 Thread Alexander Guevara
i need to get in a select box all the dirs inside a folder.. how can i do that? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Making with $values!!!

2002-12-30 Thread Alexander Guevara
hi.. i have this and i cant get it work!!.. HERES THE CODE --- for ($i=1;$i<11;$i++){ echo" TEXT "; }

Re: [PHP] No tshowing url in title bar....

2002-12-21 Thread Alexander Guevara
r instead of the url. > If you want to get rid of the address bar of the browser window, let me know > and I can post the javascript for creating that window. > > Larry S. Brown > Dimension Networks, Inc. > (727) 723-8388 > > -Original Message- > From: Alexander Guev

[PHP] No tshowing url in title bar....

2002-12-21 Thread Alexander Guevara
Dont know if this concerns to php genral.. but i want to know how can i do for preventing showing the url in the title bar of the browser.. for example i click a link that goes to a php page called verify.php and in the windows browser title bar is show this.. http://www.server.com/verify.php It i

Re: [PHP] Is there any method to filter the single quote fromastring?

2002-12-21 Thread Alexander Guevara
Thanks.. i solved it but not with that solution.. ill give a try with it.. the way i solved was using ereg_replace before storing in the db and chnging the ' and " with the html characters as you mention with htmlentities() Thank you all for the responsees!. "John W. Holmes" <[EMAIL PROTECTED]

Re: [PHP] Is there any method to filter the single quote fromastring?

2002-12-21 Thread Alexander Guevara
xt box but it doesnt show up.. and i have this code: where userName i retrieved from the data base with a simple query.. so tell me what is wrong there!...Thanks! "Justin French" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... on 21/1

Re: [PHP] Is there any method to filter the single quote from astring?

2002-12-20 Thread Alexander Guevara
It works.. but when you retrieve the data from the database to a text box it doesnt appear if it has the single quote ('), o tought it was cause i have the stripslashes but i delete stripslashes and it still doesnt appear in the text box! "Justin French" <[EMAIL PROTECTED]> wrote in message [EMAI

Re: [PHP] the numeric key of an array???

2002-12-20 Thread Alexander Guevara
Thanks. it worked fine.. and the reply at the botton too.. Thank you so much! "John W. Holmes" <[EMAIL PROTECTED]> wrote in message 000101c2a896$70aad5c0$7c02a8c0@coconut">news:000101c2a896$70aad5c0$7c02a8c0@coconut... > > > If you're looking to loop through your array, there are other > meth

Re: [PHP] the numeric key of an array???

2002-12-20 Thread Alexander Guevara
ay); > > print $arr2[0]; // VALUE1 > > Regards, > Philip Olson > > > On Fri, 20 Dec 2002, Alexander Guevara wrote: > > > How can i do for printing the value of an array given the numeric key for > > example i have this code: > > > > $array = ar

Re: [PHP] the numeric key of an array???

2002-12-20 Thread Alexander Guevara
Well which kind of methods are you talking about?? could you tell me some for do it?? Thanks! "John W. Holmes" <[EMAIL PROTECTED]> wrote in message 01c2a890$d1539cf0$7c02a8c0@coconut">news:01c2a890$d1539cf0$7c02a8c0@coconut... > > How can i do for printing the value of an array given the

[PHP] the numeric key of an array???

2002-12-20 Thread Alexander Guevara
How can i do for printing the value of an array given the numeric key for example i have this code: $array = array ( 'VAL1' => "VALUE1", 'VAL2' => "VALUE2", 'VAL3' => "VALUE3" ) So the only way i have found to print the value is like this : echo $array['VAL1']; and it prints = VA