Where does the session stored, either client side or server side?
Latest Answer: It is stored at server side because PHP is server side scripting language. ...
If we have a button on a simple page and a user clicks on the button, then how we can come to know how many times the user has clicked on the button?
Latest Answer: Another way of count hits is, whenever user clicks the button, update COUNT field of mysql table. ...
How do you upload videos using PHP & MySQL
Latest Answer: For uploading videos you need not store the video in database. Just you store the video path in database. You store the videos in a separate folder like video_uploads. After uploading you can call those videos from the video_uploads folder via MySQL ...
Can you submit a form without using submit button? If Yes, How?
Latest Answer: If you want to use javascript to submit following answers are good but it you want to submit for without using javascript just use this will work same as submit button. ...
we have fetch_array to fetch a row from a result set... in what way the fetch_object function is useful... at which situation it is used? every question is like what is the difference and the answers is
Latest Answer: Procedural programmers do use functional and OOPs programmers use class and objects.So it's just a facility and not a burden on anybody. If you're following OOPs pattern then you may use mysql_fetch_object function, otherwise get ...
How to upload files using PHP?
Latest Answer: Filename:
What is the difference between "mysql_fetch_array" and "mysql_fetch_object"
Latest Answer: MySQL_fetch_array() return result set or row of data as an array(numeric or associative or both by the help of mysql_query).And the result can access by indexing number or field name.It is so ez for developer to use. ...
Hello All, Fatal error: Uncaught SoapFault exception: [soap:Client] Not enough message parts were received for the operation. in C:Program FilesEasyPHP 2.0b1wwwexamplessoaptest4.php:5 Stack trace: #0 C:Program
Latest Answer: Dear$wsdl = “http://demo.mchek.com/mChekPaymentGateway/services/mChekPaymentGateway?wsdl”; $id = “16577″; $cliente = new SoapClient($wsdl); $vem = $cliente->__call(’checkStatus’,array($id)); print $vem; ?>Simple ...
How to access crystal reports through PHP code
Latest Answer: 1. If you run PHP on Windows, call Crystal Reports as a COM object.2. Regardless of your OS, you should still be able to use Crystal Reports Web services and for this you may have to use NuSOAP to access and utilized these service. ...
i m creating reports through crystal reports using MySQL database.Now i want to access these reports through php code in web page.Can anyone help me or give me sample code, how to access reports in php
Latest Answer: In PHP also you can create reports using JP Graphs. :) ...
View page << Previous 1 [2] 3 4 5 6 7 8 Next >>

Go Top