First  |  Prev |  Next  |  Last
Pages: 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
Zend_Soap_Client --HOw to pass what function to call from wsdl
hi all, Is it possible to define (pass a argument 'function name') that we can change the function to call from soap? for example here we can pass getList and then = $client->geList() must call... it means pass what function to call from wsdl... $this->_helper->results('this func must call from wsdl') ... 24 May 2010 06:53
simplexml_load_file problem
hi all, $results is a xml format string, I want to get this string as a real xml file $nodes = simplexml_load_file($results); but $nodes is empty array... how can I do that? nodes must be an object contains xml Thanks, Shahrzad Khorrami ... 24 May 2010 05:49
Is there a good way to extract the <embed>/<object> content in HTML with/without closing tag?
Hi, I want to extract all contents started with <embed> and <object> with/without closing tags. My solution is using a regular expression to get it work, but there is some exception I could not handle out. The REGEXs I used are: // With closing tag if (preg_match_all("#(<(object|embed)[^>]+>.*?</\\2>)#is",... 23 May 2010 06:00
securing a custom app
Hello, I've got a custom app that interacts with a database. I want to use something stronger than .htaccess to protect it and ssl is not available as this is a shared host. There will be several user's accessing this app and updating the database through it. What i was thinking was giving each a unique username, ... 23 May 2010 11:23
Front End Dev seeking guidance
I'm a Front End Dev seeking to add that crucial server-side/database knowledge to my understanding of end to end web dev. I'm particularly interested in learning how to set up server side responses to my AJAX and JSON/JSONP requests. Also, I'm thinking of a "simple" finances management app (though we'll see ho... 22 May 2010 22:33
Using if(isset()) with $_GET and switch and default
Hi, I'm still new to PHP and everyday I learn something new. Today I was trying to make some script using the switch statement but I have some issue that I don't know how to get around it. It's a simple test script that contain only one file, it has some questions that I want only one question appear per time then... 22 May 2010 10:34
localize string (date)
hello I want to find a date in a text how to? format: XX-XX-XXXX Example: Ideo urbs Venerabile superb post 12-02-2010 efferatarum latasque leges gentium cervicis oppressed and fundamenta libertatis retinacula sempiterne Frugi velut parens and prudent and dives Caesaribus tamquam 25-04-2010 liberis am regen... 22 May 2010 17:08
__call for existing methods?
Is there a way to catch EVERY method of a inheritance class? something like this... class Father { public function __call ($name, $args) { $this->doSomethingBefore(); if ( method_exists($this, $name) ) return $this->$name($args); else echo 'invalid method'; } public function doSomet... 21 May 2010 16:09
Help, FPDI is changing the size of my PDFs
I'm using FPDI to add some stuff to some existing PDF documents. Works great, except that it's slightly changing the size of the PDF document (the physical page size, not the file size), which is unacceptable since this is for a high-end print file. I've stripped out all the code to the bare bones to try and debug this... 21 May 2010 16:09
how to update array keys and keep element order ?
How do I update an array key without disturbing the element order ? Suppose an existing array("FR", values ...) where I want to change 0 => "FR" to "country" => "FR" and keep the original element order. TIA, Cor ... 21 May 2010 10:37
First  |  Prev |  Next  |  Last
Pages: 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56