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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 2796 - 2825 of 3259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2796
how to create crystal report in php? how to access values from database(mysql) in crystal report ? there is some site in which documentation is for crystal...
uday_moruskar
Offline Send Email
Oct 3, 2006
9:05 am
2797
Following links may provide some help to you -> http://tech.groups.yahoo.com/group/phpexperts/message/3231 http://p2p.wrox.com/topic.asp?TOPIC_ID=3828 R, ...
Aditya Mooley
aadityamooley
Offline Send Email
Oct 3, 2006
10:04 am
2798
how to create crystal report in php? how to access values from database(mysql) in crystal report ? there is some site in which documentation is for crystal...
uday_moruskar
Offline Send Email
Oct 3, 2006
11:58 am
2799
Hi, Following are the details for those who are interested in working in Drupal Development in Bangalore. Company: Bangalore based company Job profile: Drupal...
Sunil Pichamuthu
sunilpichamuthu
Offline Send Email
Oct 3, 2006
11:59 am
2800
Hi all, can you please tell me how can i seperate file name and its extention using php. For example: There is a file called usafile.php. I need $Filename = ...
Surajit Koly
chan_suro
Offline Send Email
Oct 3, 2006
12:38 pm
2801
Hi you can find some help in php's online manual http://www.php.net/manual/en/ref.com.php search for "crystal" and you will see some user notes for crystal...
Aditya Mooley
aadityamooley
Offline Send Email
Oct 3, 2006
12:42 pm
2802
Explode based on dot, and implode excluding last value. $file_arr=explode(".",$file_name); array_pop($file_arr); $file_name=implode(".",$file_arr); or ...
krishna.srikanth@...
Send Email
Oct 3, 2006
1:59 pm
2803
Hi Surajit, Simply explode your $filename with "." (dot) as follows: $temp = explode('.', $fileName); it will return $temp[0] = usafile and $temp[1] = php ...
neeraj avinash
niraj_pan
Offline Send Email
Oct 3, 2006
2:02 pm
2804
Hi, We can't predict that there will be only 2 values in array, if exploded. There is a chance for many values too. if the file name is abc.xyz.123.php which...
M Krishna Srikanth
mandaksk
Offline Send Email
Oct 3, 2006
4:33 pm
2805
Or another one way as, $ArrFileName = explode ('.', $FileName); $Extension = $ArrFileName [count ($ArrFileName)-1]; $FileName = substr ($FileName, 0,...
Kathir-Buddies
kathirgen
Offline Send Email
Oct 3, 2006
4:34 pm
2806
Hi, Sounds right, but appears lengthy route. Let me remind you, while programming, it falls the duty of programmer to reduce program code but still maintain...
M Krishna Srikanth
mandaksk
Offline Send Email
Oct 4, 2006
4:46 am
2807
What do Linux people use for Reporting is a big mystery ? Aditya Mooley <aadityamooley@...> wrote: Hi you can find some help in php's online manual ...
Gurudatta Raut
gurudatta_p_...
Offline Send Email
Oct 4, 2006
4:51 am
2808
... Common sense! T -- ============================================================= PHP Applications for E-Biz: http://www.sanisoft.com Coppermine Picture...
Dr. Tarique Sani
tariquesani
Offline Send Email
Oct 4, 2006
4:56 am
2809
Hi All, I am new to PHP. I wish to maintain the data filled in the form displayed in the browser. For example: If user fills a registration form and clicks on...
nikhilwalker walker
nikhilwalker
Offline Send Email
Oct 4, 2006
9:17 am
2810
Sample Code for text boxes. < input type="textbox" name="first_name" value="<?php echo $_POST['first_name']; ?>" > $_POST['first_name'] will have some value...
krishna.srikanth@...
Send Email
Oct 4, 2006
10:31 am
2811
well.. i don't know about templates.. but all the fields which are correct, just re-enter the values in them from the servre by setting the 'value' attribute...
Rohan Prabhu
rohan_gnome
Offline Send Email
Oct 4, 2006
10:49 am
2812
Hi, you may want to try AJAX for validation, i know it is not relivent to getting value but good for validations which are looking at.. and you need not to...
Sumit Mittal
pra_mittal123
Offline Send Email
Oct 4, 2006
12:01 pm
2813
Nope... AJAX is the worst thing to use in such a scenario because, if you're using AJAX that means you are assuming JavaScript support at the client's side...
Rohan Prabhu
rohan_gnome
Offline Send Email
Oct 5, 2006
4:39 am
2814
format u r using right now nikhilwalker walker <nikhilwalker@...> wrote: Hi All, I am new to PHP. I wish to maintain...
prashant dongare
dprashant777
Offline Send Email
Oct 5, 2006
4:40 am
2815
Can anyone tell me the simple code for the pagination?...
ravi_kachh
Offline Send Email
Oct 5, 2006
4:46 am
2816
I am giving sample code. <?php $items_per_page = 10; $total_items = 245; //this count may computed from database or some other source $total_pages=ceil (...
krishna.srikanth@...
Send Email
Oct 5, 2006
6:48 am
2817
Dear all, I am using WAMP. I am trying to use some LDAP functions but I get the following error.. " Fatal error: Call to undefined function ldap_connect() in ...
Gauri Sharangpani
gauri.lokesh@...
Send Email
Oct 5, 2006
12:43 pm
2818
Hi, You, perhaps, have to edit php.ini file. 1) Make sure the extension_dir (found in "Paths and Directories" section) is set to "./ext" or what ever your ext...
krishna.srikanth@...
Send Email
Oct 6, 2006
4:37 am
2819
I have the Pagination Class if u want ravi_kachh <ravi_kachh@...> wrote: Can anyone tell me the simple...
prashant dongare
dprashant777
Offline Send Email
Oct 6, 2006
4:38 am
2820
Hi, every one I want to know about Pear coding Structure. Anuj Gupta...
geetanuj2002
Offline Send Email
Oct 6, 2006
5:10 am
2821
... Make sure it is loaded via php.ini - uncomment that line. And restart Apache....
Nirav Mehta
magnet_web
Offline Send Email
Oct 6, 2006
5:22 am
2822
any one have idea about pear code. ... [Non-text portions of this message have been removed]...
anuj gupta
geetanuj2002
Offline Send Email
Oct 6, 2006
5:23 am
2823
You will need to get and compile LDAP client libraries from either the University of Michigan ldap-3.3 package or the Netscape Directory SDK 3.0. You will...
prashant dongare
dprashant777
Offline Send Email
Oct 6, 2006
5:25 am
2824
Still i don't have idea about ur problem but i need ur help if u have any idea about about pear code then plz reply. and one more things is that if u can pass...
anuj gupta
geetanuj2002
Offline Send Email
Oct 6, 2006
5:26 am
2825
Hi.. You can use, the function explode() explode your filename on "." Example: $ext=explode(".",$_FILES['file']['name']); Example: $ext=explode(".",$filename);...
Gauri Sharangpani
gauri.lokesh@...
Send Email
Oct 6, 2006
5:26 am
Messages 2796 - 2825 of 3259   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