You need to write the word "function" just before the function name to indicate you are defining a function.
Let me know if that doesn't fix it.
Cheers
Dan
--
You received this message because you are subscribed to the Google Groups "BoltWire" group.
To unsubscribe from this group and stop receiving emails from it, send an email to boltwire+u...@googlegroups.com.
To post to this group, send email to bolt...@googlegroups.com.
Visit this group at http://groups.google.com/group/boltwire.
For more options, visit https://groups.google.com/d/optout.
The 4th line should probably be
BOLTinfo($name, $wert);
Dan
Change the function name to something else. I think it is causing your problem as it is a reserved webhook in BoltWire.
--
You received this message because you are subscribed to a topic in the Google Groups "BoltWire" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/boltwire/YjKZ9yGbli0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to boltwire+u...@googlegroups.com.
Hello,
What if, as Dan said, you tried this?
function BOLTFmilano($args) {
$name=$args['field'];
$wert=$args['value'];
BOLTFinfo($name, $wert);
return;
}
Regards.
This function doesn't return any value. Combine the last two lines to say
return BOLTFinfo...