[PHP-WIN] Re: Regular expression

2001-11-14 Thread _lallous
try that: ereg("^[a-zA-Z]+") "Priya Chanu" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > Hello Everyone , > > I am a beginner with regular expression. > > I want a string to be on only alphabets both upper and > lower case. > > So to check it i do the following: > > $vorname =

[PHP-WIN] Re: .diff files

2001-10-22 Thread _lallous
I guess the diff files are files like that: fileoffset: original_byte patched_byte example: 0001BCD: 74 EB no idea how to open them though...but you can easily write your own patcher in worst acses. "Brian Feliciano" <[EMAIL PROTECTED]> wrote in message 015e01c15ad7$6f9d8ff0$1600a8c0@flashmast

[PHP-WIN] Re: Array Manipulation?

2001-10-16 Thread _lallous
In your MySql query you can put a condition to exclude the unwated 3 records. example: select * from tablename where not(id in (1,2,3)) "Mark Sweeney" <[EMAIL PROTECTED]> wrote in message 000e01c1568c$af4aa740$96ab869f@a">news:000e01c1568c$af4aa740$96ab869f@a... Hey, Just wondering, I am fetchin

[PHP-WIN] Re: Multidimensial Array !!!!!

2001-10-15 Thread _lallous
"bob", "oupation"=> "superhero","age"=> 30), array("name"=> "sir", "oupation"=>"sup","age"=> 66), array("name"=> "sir", "oupation"=>"sup","age"=> 76)); $first=array("name"=> "Desire", "oupation"=> "sko

[PHP-WIN] Re: Getting The Name Of A Form Within A Script

2001-10-10 Thread _lallous
as far as I know there is no way to do that. therefore create a hidden field in the form that holds the form name, ie: . . . <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > When you set up a form in HTML whose action is a .php script (ie: ), is there some wa

[PHP-WIN] Re: InstallShield coulnd't find OCX control...

2001-10-09 Thread _lallous
get the PHP binaries and unzip them, then get the text file that tells you how to do manual configuration...that's how it worked with me with same system as you. "Jon Grover" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I'm sure a bunch of people here have s

[PHP-WIN] Re: Stripping filepath from string

2001-10-09 Thread _lallous
this regex/example should do: "Christian Sandfeld" <[EMAIL PROTECTED]> wrote in message 8710AE4FCD7ED511B1C800025558393005C92C@ZENSYS02">news:8710AE4FCD7ED511B1C800025558393005C92C@ZENSYS02... > Hi list, > > I know I have seen this somewhere - but I can't find it (and for some reason > I can't

[PHP-WIN] Re: php array

2001-10-09 Thread _lallous
$links = array( 'Altavista Search Engine' =>'http://www.altavista.com/', 'Google', =>'http://www.google.com/' ); while (list($linkname, $url) = each($links)) { echo "$linkname"; } hope it helps, "Sir D" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi > I

[PHP-WIN] Re: mpeg size

2001-10-04 Thread _lallous
if you know the .mpg file format then you can do that in any programming languages. "Sichta Daniel" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > Is there any way to get size (WxH) of mpeg file in php ? > > Dan > > -- PHP Windows Mailing List (htt

php-windows@lists.php.net

2001-09-26 Thread _lallous
&$varname menas to take the address of the variable, example: $a = "Hello world!"; $b = &$a; $b = "Hi! this is var B"; echo $a; // output will be: Hi! this is var B "Ming-Chieh Lee" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > does anyone know what does &

[PHP-WIN] Re: ? tag

2001-09-17 Thread _lallous
echo "hello world"; is same as: "Patrick Silva" <[EMAIL PROTECTED]> wrote in message 04fd01c13cfd$9b3a5b90$[EMAIL PROTECTED]">news:04fd01c13cfd$9b3a5b90$[EMAIL PROTECTED]... Hello How to replace echo by ? I can't find how to configure PHP4 for this on NT thanks /-

[PHP-WIN] Re: disable function

2001-08-31 Thread _lallous
check your php.ini and this key: disable_functions = "Sur-Php" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello php-windows, > > through i came to know that many > fuction are pre - compiled in windows binary version of php > > for example : >