Search the web
Sign In
New User? Sign Up
in-phpug · Indian PHP User Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 880 - 909 of 3262   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
880
If you need small/compact forum without lots of bells and whistles, go for minibb. I have used it in my previous company, mini bb code was very modular and I...
d.k.jariwala (JD)
boyzone_2001
Offline Send Email
Sep 1, 2003
3:38 pm
881
Hi, I hope most of the list members are familier with the LOST tips (lost.sourceforge.net) project. I just have a very small requirement, I want to strip the...
Ajitabh Pandey
ajitabhpandey
Offline Send Email
Sep 3, 2003
2:45 pm
882
Hi Ajitabh, That should be as follows: 1. use file() 2. explode on \n 3. store explode array size 4. Now the second element in the array would contain the Sub...
Paul Alapatt
paulalapatt
Offline Send Email
Sep 3, 2003
3:56 pm
883
... Slurp the file into a buffer. Do a s/^:$//g and a s/#+//g on the buffer with preg_replace() (IIRC). HTH, -- b...
Biju Chacko
biju_chacko
Online Now Send Email
Sep 4, 2003
3:32 am
884
... Thanks Paul, but by the time I got this I tried a slightly different method using regular expressions. I am attaching my script and the output file...
Ajitabh Pandey
ajitabhpandey
Offline Send Email
Sep 5, 2003
3:04 am
885
Hi, I have created a 2 dimensional array as . $aCC = array(); for($i=0; $i < $nMaxNoOfLocations; $i++) { for($j=1; $j <=10;$j++) { $aCC[$i][$j] = ... ; } } How...
Melvin D'souza
rfowkar
Offline Send Email
Sep 5, 2003
7:11 am
886
Hey Ajit, Oh actually if your comfy with REGEX, what you have done is perfectly, except that you could have combined multiple REGEXs. Anyways assuming this is...
Paul Alapatt
paulalapatt
Offline Send Email
Sep 5, 2003
12:37 pm
887
Hi Melvin, What code you are using to acess 2-dimensional array? Regards, JD Melvin D'souza <Mail@...> wrote: Hi, I have created a 2 dimensional array...
d.k.jariwala (JD)
boyzone_2001
Offline Send Email
Sep 5, 2003
12:43 pm
888
Hi, How do I create email users on my domain using php? I am looking for a solution whereby a user who signs up on my website will automatically get a...
Shoan Motwani
lucky_luke_24
Offline Send Email
Sep 6, 2003
1:42 am
889
Hi d.k.jariwala (JD) ... I am using the code for($i=0; $i < $nMaxNoOfLocations; $i++) { for($j=1; $j <=10;$j++) { $x = $aCC[$i][$j] ; } } This works if my...
Melvin D'souza
rfowkar
Offline Send Email
Sep 6, 2003
4:32 am
890
Hi Shoan, You need to find out how you add a user to your domain 'manually'. Say you are on Linux, you can use shell commands to create new user and give him...
d.k.jariwala (JD)
boyzone_2001
Offline Send Email
Sep 6, 2003
5:56 am
891
That's strange. Following code is working _perfectly_ for me. <?php $aCC = array(); $nMaxNoOfLocations = 5; for($i=0; $i < $nMaxNoOfLocations; $i++) { ...
d.k.jariwala (JD)
boyzone_2001
Offline Send Email
Sep 6, 2003
5:57 am
892
Hi, Thanks Paul, I will try that out. Attached is one of the LOST tip files. Regards. Ajitabh Pandey __________________________________ Do you Yahoo!? Yahoo!...
Ajitabh Pandey
ajitabhpandey
Offline Send Email
Sep 6, 2003
2:23 pm
893
... Sorry. My mistake. I was asigining the values of the array to a variable in the function. I had not defined the variable outside the function, so I was not...
Melvin D'souza
rfowkar
Offline Send Email
Sep 8, 2003
4:12 am
894
Hi Friends, I want to retrieve the folder name using bash script, which contains the files that I am using. e.g. I have a file "modGlobalApiAccessor.bas" in...
Gupta, Vipul
vipulgupta1
Offline Send Email
Sep 8, 2003
7:13 am
895
... Why are you using bash script? Have you looked into the PHP filesystem functions? Tarique -- ...
Dr Tarique Sani
tariquesani
Offline Send Email
Sep 8, 2003
11:57 am
896
Hi if you are running on unix box u shud be able to use the system command of php and use the specified command in that ...like find grep or what ever u want ...
deepak dharwadkar
ddeepak76
Offline Send Email
Sep 8, 2003
1:13 pm
897
... Gupta> Hi Friends, I want to retrieve the folder name using bash Gupta> script, which contains the files that I am using. e.g. I Gupta> have a file...
Balaji Narayanan
lists@...
Send Email
Sep 11, 2003
2:59 am
898
Hello, phplib still has got its files as php3. I changed the http.conf file so that the webserver recognises files with php3 extension... But still on loading...
Tux
linuxtux
Offline Send Email
Sep 18, 2003
2:36 am
899
... Download PHPlib 7.4 also AFAIK you dont need to call any index.php3 for PHPlib Tarique -- ...
Dr Tarique Sani
tariquesani
Offline Send Email
Sep 18, 2003
3:18 am
900
... Yesterday I had downloaded PHPlib 7.4 at home and was taking a peek at it. It has got all files as .php3 except one prepend.php, there is a prepend.php3...
Rajesh Fowkar
rfowkar
Offline Send Email
Sep 18, 2003
4:59 am
901
... I have Apache 2.x so I don't know if the sytax has changed, but I have a directive like this: <Files *.php> SetOutputFilter PHP SetInputFilter PHP ...
Biju Chacko
biju_chacko
Online Now Send Email
Sep 18, 2003
5:27 am
902
... All the lib files have extentions .inc ... You can safely rename index.php3 to index.php BUT does your Apache recognise php3 as a valid PHP extension? It...
Dr Tarique Sani
tariquesani
Offline Send Email
Sep 18, 2003
7:06 am
903
Hello Everyone!!! This is Imthiaz Rafiq from chennai. I am very much new to php. When I was downloading phplib I came across this group. I like to participate...
Imthiaz Rafiq
imthiazrafiq
Offline Send Email
Sep 18, 2003
8:49 am
904
... Yep... ... I had created a link index.php pointing to index.php3 and than it works. But there are other php3 files. If I rename all those files to .php...
Rajesh Fowkar
rfowkar
Offline Send Email
Sep 18, 2003
8:49 am
905
Hello, My application uses session (server side, default session handlers). Session is created when a user logs in & destroyas it on logout. But most users...
Ajith C
ajc377
Offline Send Email
Sep 18, 2003
8:49 am
906
... Thanks Biju. But I have got Apache 1.3 and AFAIK the above two changes are enough. But it does not seem to be working. When I load phplib sample index.php3...
Rajesh Fowkar
rfowkar
Offline Send Email
Sep 18, 2003
8:51 am
907
Rajesh, Well, if you need an urgent quick fix, put int FILES directive in a .htaccess file and pop it on the server. It should force all .php3 as ForceType...
Paul Alapatt
paulalapatt
Offline Send Email
Sep 18, 2003
8:54 am
908
Yes, You should maintain state TIMESTAMP in a db versus the SESSION_ID. And check for time lapsed since last active TIMESTAMP. Each time a user visits a page...
Paul Alapatt
paulalapatt
Offline Send Email
Sep 18, 2003
11:54 am
909
Hi there, I am Vivek Aundkar. I am 23 yrs old sofware developer from Pune(India). I have 2 yrs of experience in s/w development on VB/SQL Server.Now we are...
vivek mahadeo aundkar
vivekaundkar@...
Send Email
Sep 24, 2003
11:48 am
Messages 880 - 909 of 3262   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help