I have Book & book Code for "Practical Web 2.0 Applications with PHP" (apress.com/Apress Publication) I am facing problem to setup the application. I am...
Hi all, I am new to SOAP. can you please explain why this errors are coming. ... Warning: SoapClient::SoapClient(http://localhost/nusoap/helloworld.php) ...
Hi exprts, I am getting the folowing errors regarding soap. Please help me *Fatal error*: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL:...
This worked perfectly fine for me, although the nusoap library conflicted with my PHP SOAP extension, so i had to disable the PHP SOAP ext. by commenting the...
I think WSDL support is not enabled in your SOAP Server code. To enable WSDL support, you will need to initialize WSDL using the following settings //...
Hi Due we still need to rely on xml_parse or is there a better way so that the XML is parsed and we get a array for that xml. Thanks -- Regards, Abhishek jain...
Hi, I want to know a bit on SQL Injection. If in my server i have in php.ini magic_quotes_gpc = On Is this sufficient for preventing sql injection? Please...
not really. Generally, magic quotes is switched off (because it can cause unwanted changes to data at times). Als in PHP6, magic quotes is going to be...
Hi, There is one class in phpclasses.org, SimpleXMLParser. Just use that class and get the array to use in your php. Get the details here....
krishna.srikanth@...
Jun 5, 2009 5:26 am
3244
Hi, Thanks for the email, This array is not in the form i want, i want XML::Simple (Perl) kind of thing, where the array is actually an asociated array with...
Hi Friends. I need to collect the live stock market price for all the stocks. possible? How? Any page which gives me this in the form of a XML feed, or i can...
Hi, Is there a global session variable which is global , i mean which can be accessed by every request and changed by any one , Which destoys itself once the...
I don't think if there is such an equivalent in PHP. You will have to store the data in the file system by some means inorder to provide application-wide...
Dear Friends, I am facing a strange error, I have developed a site in PHP and in some system the site refuses to allow one to login and other systems it...
HI, I think PHP has a built in mechanism to handle the fall back in case the client side cookies are disabled. By default it is not enabled.. You need to...
Hi, My site abruptly at times closses session, ie the user logs out automatically even if he is refreshng and browsing the site, I do not know the reason why?...
Check to see if your server time is correct and is set to UTC. Since PHP Sessions are handled via cookies, they expire prematurely if a wrong time is set....
A Belgium based firm is looking for Senior PHP Developers for their development center in Chennai. The details are as follows Job Title: PHP / Sr. PHP...
Hi, I am working on a PHP project and i need to give to the user, i want that to be protected and hidden from the user. I know i am not the first one to ask...
Hi, For protecting your code you can use available obfuscators. You can use SourceGuardian which is good but is commercial. You can look for other open source...
Dear All, I am using the PHP version of 5.2.11. I have problem in Base64 Encoding. For Example $string = "kjs$)P1rj9"; echo base64_encode($string); ...
Hi Murali, This is because of a crazy php feature, where it is tryng to parse the variable called *$rj9* The base64 encoded strings in your email decode as...
Hi friends, I need to have a checkbox like 'Remember me' in my site. Currently i have a login page which allows one to login but when someone closes and open...
Yes, you can make use of cookies. try this link http://www.bitrepository.com/php-autologin.html Regards, Krishna Shasankar http://www.krishnashasankar.com |...
The 'Remember me' option basically relates to setting a non-zero time for the cookie being set. If the cookie is set to time 0, the cookie is deleted at the...