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...
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, ...
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...
Hi, Following are the details for those who are interested in working in Drupal Development in Bangalore. Company: Bangalore based company Job profile: Drupal...
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 = ...
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...
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@...
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 ...
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...
Or another one way as, $ArrFileName = explode ('.', $FileName); $Extension = $ArrFileName [count ($ArrFileName)-1]; $FileName = substr ($FileName, 0,...
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...
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 ...
... Common sense! T -- ============================================================= PHP Applications for E-Biz: http://www.sanisoft.com Coppermine Picture...
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...
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@...
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...
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...
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...
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@...
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@...
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@...
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...
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...
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...
Hi.. You can use, the function explode() explode your filename on "." Example: $ext=explode(".",$_FILES['file']['name']); Example: $ext=explode(".",$filename);...