0
votes
0answers
11 views

Echo Forum Post Count On Wordpress Page

I've installed mingle-forum plugin onto my wordpress blog, and I want to echo out the post count for a specific forum id on a page in my blog. Any help would be appreciated. Ive tried including this ...
1
vote
3answers
42 views

Ajax Login Form - Callback to PHP?

I'm trying a login in a lightbox via jquery and ajax. My goal is that after the user logs in successful, he gets redirected to a special site. The login via jQuery.ajax works fine, but I would like ...
1
vote
1answer
33 views

optimal way of passing multiple callback functions as arguments?

I have a function that could be used in CLI or web application, that being said, there is a little difference in the process; for example: if I'm using this function for CLI it'll use a text progress ...
1
vote
2answers
73 views

Print Paypal IPN variables to the screen

This is my first post in this forum :) I am not good in english, so I apologize for my mistakes. Here is the problem - I have Paypal IPN files (code below), that sends variables to e-mail. I do not ...
0
votes
2answers
49 views

How to user jquery ajax error parameter

I'm looking for a simple example and/or explanation of how to use the error parameter for .ajax. This question (jQuery ajax error function) points to this jQuery documentation ...
0
votes
2answers
50 views

when returning data to `.ajax` callback in jquery, do I have to user `echo`?

I'm a n00b learning via online tutorial. I have the following code in a "server side" test file called "response.php": <?php if (isset($_POST)) { $answer = $_POST; echo json_encode($answer); } ...
2
votes
2answers
185 views

There is no error message when callback function runs in codeigniter form validation

Sorry for my bad english, I'm creating a form that takes some values specifying reporting options in my codeigniter project. I want to show error messages created in my callback functions. I have 3 ...
1
vote
2answers
76 views

PHP recursively turning an ArrayObject to an Associative Array

Hey guys I have a method that is supposed to call back and recursively turn an Arrayobject into an associative array, unfortunately I'm getting a fatal error PHP Fatal error: Call to undefined ...
0
votes
2answers
52 views

codeigniter callback from private methods not working

I doing form validation in CodeIgniter using Form Validation Library and my custom callbacks. public function insert_user() { if($this->input->post('submit')) { // load form ...
0
votes
0answers
36 views

jQuery load the result data on the current hovering search result

We have a table named 'Results' with the following columns: result_name rsult_data About my system Basically I use jQuery to POST the entered data on submit, and then the HTML will search if ...
0
votes
1answer
48 views

cURL WRITEFUNCTION not Being Called

When I run the following function it retrieves the HTML as expected, but the WRITEFUNCTION callback shows no signs of life. Nothing gets echoed, and the variable $this->test_output remains unchanged. ...
0
votes
1answer
41 views

FIre beforeSave on updateAll

I need to trigger beforeSave() and afterSave() callbacks on updateAll(). I use updateAll() because I need update ID field.. (I knew it kinda 'wrong' about editable-ID thing, but this database I used ...
1
vote
3answers
60 views

PHP Understanding callbacks - difference between preg_replace_callback() and preg_match_all()

I am a bit confused on the use of preg_replace_callback() I have a $content with some URLs inside . Previously I used $content = preg_match_all( '/(http[s]?:[^\s]*)/i', $content, $links ); ...
0
votes
1answer
66 views

callback race: button click to trigger ajax, whose callback won't execute on time

I have what I think is a fairly classical problem involving what looks to me like a callback race, but in spite of all my reading, I'm still stuck. You'll find the code pasted below. It's a simple ...
0
votes
0answers
101 views

Correct way to return string from callback in PHP/SWIG

What is the correct way to return a string from a callback function in PHP using the SWIG library? In modifying the Callback example provided with SWIG, I've found I am encountering a memory leak ...
0
votes
2answers
139 views

Ajax callback no response

I use below script to retrieve callback result, but nothing are return when the form is submit, what is wrong with the code below? and how to make each errors output to the div tag with id='msg'? ...
1
vote
1answer
108 views

Updating MySQL table from callback URL in Joomla

My website is built on joomla 2.5.8. the website is using payment gateway for processing payments. As you know joomla has this structure for URLs (without SEF): ...
0
votes
1answer
65 views

How do I use an object method in PDO::FETCH_FUNC

This question references the following http://www.php.net/manual/en/pdostatement.fetchall.php from the PHP manual. This enables me to pass a function to process the result of a query before I get ...
0
votes
0answers
89 views

How to create PHP class callbacks (or hooks)

I've recently made a more conscious effort to write more reusable code. I'm trying to create decoupled classes with little to no dependencies, and when one is required I'm using dependency injection. ...
0
votes
1answer
105 views

php call back script

I am trying to make a callback function for my website. I have seen a few PHP scripts but I am having trouble linking the script to the input text boxes. My PHP script is called callback.php. This is ...
-1
votes
1answer
92 views

Match Request URI with PHP's preg_match [duplicate]

I am making a simple PHP router and I am catching current request from $_SERVER['REQUEST_URI'] to determine which request is being sent and active. I am stucked with my Regular Expression pattern to ...
0
votes
0answers
155 views

Laravel/PHP - passing data to callback functions

I'm looking into Laravel's eager loading methods and want to add a 'where' clause in the but cant figure out how to pass the value into the statement: if( $this->post_id !== false ) { $post_id ...
0
votes
1answer
85 views

Server to Client Call Back - PHP/JavaScript

I need some solution where server can initiate some call to client without any kind of constant update look up from client, I realize that good docs and gmail has some mechanism where update of cell ...
0
votes
2answers
90 views

exiting from php command without triggering shutdown functions

how can I exit from a php script (for example with the exit() function) but without triggering all previously registered shutdown functions (with register_shutdown_function)? Thanks! EDIT: ...
0
votes
1answer
53 views

PHP: __call not working properly

I'm having a problem creating a class called API_Widgets in WordPress using the magic __call function. If I simple rename the file to derp.php and the class to API_Derp then it works without problems. ...
0
votes
0answers
65 views

Session in Callback URL

The value of session variable is not accessible on Callback URL of Bunchball. I have implemented Bunchaball API in php and wants to send email to the logged in user, if user buys any rewards. For ...
0
votes
0answers
104 views

Why is d3.csv()'s callback firing too early?

I'm displaying charts using d3, based on CSV data provided by a PHP file that interacts with SQL Server. The CSV is pulled using d3.csv(). My current code has an odd bug: If my PHP file ...
0
votes
2answers
58 views

PHP callback in browser window

I'm trying to learn about PHP callbacks. I'm using examples from phpriot.com. ---------------this code----------------------------- // this function simulates downloading data from a site ...
0
votes
2answers
62 views

What's the alternative to using global variables in a callback function?

I have used PHP for a very long time, but not really used callbacks very much until quite recently. In the following code, the callback (the example is QueryPath, in case you're wondering, but it ...
0
votes
2answers
111 views

php callback function in class not being called

Given this line of code to callback a function and the callback function itself: Class MyClass { public function doThings() { ...
0
votes
1answer
36 views

Is it possible to have a callback for a undefined object?

Is it possible to define a function that get's called when a object isn't defined? So I can do $makeUpOntheFlyObjectNames->something(); in the function get the object name, and the function name ...
0
votes
1answer
38 views

Why this array_filter method not calling this function?

private static function returnSameElementIfNotEmpty($item) { if (empty($item)) { return false; } else{ return true; } } public static function clean($array) { ...
0
votes
0answers
44 views

How to understand this callback

I have this function key_compare_func($key1, $key2) { static $counter = 1 ; echo 'Iteration : ', $counter, ' ', $key1, ' ', $key2, "\n"; $counter++; if ($key1 == $key2) ...
1
vote
1answer
70 views

How to pass a variable to a Drupal callback?

I created a structure of field like below from within the code and not using webform UI. The reason I did this programmatically is because I have hundreds of forms and I wanted to do it once for all. ...
0
votes
2answers
49 views

Why is this callback function not working?

I have the following code: public function compareObjects($object1, $object2){ return $object1->id - $objects2->id } $diff = array_udiff($array1, $array2, 'compareObjects'); but it keeps ...
1
vote
2answers
156 views

Facebook payment platform 64bit order_id on 32bit server

I'm currently running into a massive wall due to a problem i cannot seem to solve. The problem is that, when you issue a payment through the Facebook payment platform (facebook javascript sdk), it ...
0
votes
2answers
58 views

How to wait for a callback before continuing in PHP

I'm working on an online payment solution using a bank API. When the user enter his creditcard number on the bank website (so I don't have to deal with PCI compliance), the API does a callback to one ...
0
votes
4answers
80 views

How to Pass a function to a class in php

I have a class that generates data based on a few things. I would like to format that data from the outside. So I am trying to pass a function into the class so that it would format that data. I ...
0
votes
3answers
76 views

Filter an array so that only keys starting with a specified string remain

I have an array with several keys, an I'm looking for a callback to get rid of all the keys that don't meet a certain criteria (start with 'email' in this case). I've been looking at array_walk() for ...
0
votes
1answer
92 views

Php response displays in browser instead of firing the ajax callback

I've spent some time looking on SO for an answer to this and have found some related issues, but nothing quite like mine...as usual.... I've got a fairly simple php/jquery ajax registration page that ...
3
votes
1answer
69 views

How can I pass reference to call_user_func?

Consider the following example : function myTest(&$var) { $var++; echo "var = {$var}\n"; } $x = 42; call_user_func('myTest', $x); It shows the warning : Warning: Parameter 1 to ...
1
vote
0answers
46 views

Changing an array via a callback in PHP

I have a class WorkerPool that has an array declared as private $live_resources = array(); In the class there is a loop that under a certain condition, adds an item to the array like this ...
0
votes
1answer
173 views

PHP: Working with array_filter

This actually relates to a previous question I asked where someone kindly offered some code I could work with as a solution to a problem I posed. Now, I understand most of code that was posted, until ...
0
votes
2answers
70 views

PHP External Oauth : how to displaying a waiting message while waiting for callback (not using AJAX)

We allow external OAuth using PHP APIs to several social networks. When the user choose external authentication, a new window (popup) is opened, where the application asks authorization. Then, still ...
0
votes
2answers
51 views

PHP variable in callback function

I've a question. In array_filter: $min = 4; $arr = array(1,2,3,4,5,6,7); $arr = array_filter($arr,function($e) { return $e <= 4; }); var_dump($arr); It works. If i use a $min = 4; $arr = ...
2
votes
2answers
104 views

More About PHP OOP - Classes within Classes

I have been told that a class cannot be defined within a class in PHP. However, in my own example this seems to work which has me confused: class_test.php: require('class_1.php'); new class_1 //Need ...
0
votes
3answers
163 views

array_map in php with callback OOP [duplicate]

Possible Duplicate: How to use an object method as a callback function Usually I used array_map with procedural code, but in this case I'm working in OOP and the callback should be ...
0
votes
4answers
52 views

regex, save a value in a array

In a string each time there is a word with a # I want to save the word in an array, here my code : <?php function tag($matches) { $hash_tag = array(); $hash_tag[]=$matches[1]; return ...
2
votes
3answers
497 views

How do I call a JSON web service from PHP with parameters and callback?

I call a webservice from a JQuery $.getJSON function, it works fine. var p = { 'field1': 'value1', 'field2': 'value2', 'field3': 'value3' }; ...
-1
votes
4answers
118 views

Is the call_user_func_array() changed in PHP 5.3?

Has the function call_user_func_array() changed in PHP 5.3 ? Because I have module that has several calls of this function, but it doesn't work after upgrade to PHP 5.3. I traced the code and it seems ...

1 2 3 4 5