curl POST ( CURLOPT_POSTFIELDS )
I am trying to log into a forum and send a message to an user but no effect.
View ArticleDetecting the “actual” end of an array in PHP
Given I have an array as follows:$array = array(‘a’, ‘b’, 0, ‘c’, null, ‘d’);Now, I can iterate through it easily with foreach of course:foreach($array as $value){ var_dump($value);}And all is fine and...
View ArticleUrl routing regex help
I’m trying to create a url routing script for my new CMS but must confess that regex isn’t my strong side. So far i keep running into errors or no results.What i’m trying to accomplish is using certain...
View ArticleWhat is the error in my code that I get mysql_fetch_array wa
I am trying to display some data from mySQL, the db details are correct but I get this. *Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource*What is the error with my...
View ArticleCodeigniter – multiple database connections
I have a problem with multiple db connections at Codeigniter. At my database.php i configured two databases. $active_group = ‘cms’;$active_record = FALSE; $db['cms']['hostname'] = ‘localhost’;...
View ArticleRegExp in preg_match function returning browser error
The following function breaks with the regexp I’ve provided in the $pattern variable. If I change the regexp I’m fine, so I think that’s the problem. I’m not seeing the problem, though, and I’m not...
View ArticleCodeIgniter: SQL Audit of all $this-*db-*query() method call
I’m using CodeIgniter 2+ and would like to Audit all $this->db->query($sql); calls.All of our database calls are thru the query() method; no active record usage. I need to record the $sql queries...
View ArticlePHP: if(function_exists(‘curl_init’)) does that work?
I have some code that that I only want to execute if curl_init() is present. I’m checking for it’s existence with this code:if(function_exists(‘curl_init’)){ $c = curl_init(); curl_setopt($c,...
View ArticlePHP Exploding String into Multi-level Array
I was wondering if it’s possible to do something like this:Parent1@MiddleA%Child|Child|Child|MiddleB%Child|Child|Child|Parent2@MiddleA%|ChildAnd have it explode into something like...
View Articlecounter-intuitive behavior of isset()
I pass a variable $foo to a function. This input variable might be an array or a string. If it is an array, then I want to set:$name = $foo['name']And if it is a string, then I want to set:$name =...
View Article